class Google::Apis::BloggerV3::Blog::Posts

The container of posts in this blog.

Attributes

items[RW]

The List of Posts for this Blog. Corresponds to the JSON property `items` @return [Array<Google::Apis::BloggerV3::Post>]

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 generated/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 generated/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