class Google::Apis::BloggerV2::Blog::Pages
The container of pages in this blog.
Attributes
self_link[RW]
The URL of the container for pages in this blog. Corresponds to the JSON property `selfLink` @return [String]
total_items[RW]
The count of pages in this blog. Corresponds to the JSON property `totalItems` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/blogger_v2/classes.rb, line 160 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_v2/classes.rb, line 165 def update!(**args) @self_link = args[:self_link] if args.key?(:self_link) @total_items = args[:total_items] if args.key?(:total_items) end