class Google::Apis::BloggerV3::Pageviews
Attributes
blog_id[RW]
Blog
Id. Corresponds to the JSON property `blogId` @return [String]
counts[RW]
The container of posts in this blog. Corresponds to the JSON property `counts` @return [Array<Google::Apis::BloggerV3::Pageviews::Count>]
kind[RW]
The kind of this entry. Always blogger#page_views. Corresponds to the JSON property `kind` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/blogger_v3/classes.rb, line 767 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/blogger_v3/classes.rb, line 772 def update!(**args) @blog_id = args[:blog_id] if args.key?(:blog_id) @counts = args[:counts] if args.key?(:counts) @kind = args[:kind] if args.key?(:kind) end