class Google::Apis::BloggerV3::Blog::Posts
The container of posts in this blog.
Attributes
items[RW]
self_link[RW]
The URL of the container for posts in this blog. Corresponds to the JSON property `selfLink` @return [String]
total_items[RW]
The count of posts 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_v3/classes.rb, line 190 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 195 def update!(**args) @items = args[:items] if args.key?(:items) @self_link = args[:self_link] if args.key?(:self_link) @total_items = args[:total_items] if args.key?(:total_items) end