class Google::Apis::BloggerV3::Post::Replies
The container of comments on this Post
.
Attributes
items[RW]
The List of Comments for this Post
. Corresponds to the JSON property `items` @return [Array<Google::Apis::BloggerV3::Comment>]
self_link[RW]
The URL of the comments on this post. Corresponds to the JSON property `selfLink` @return [String]
total_items[RW]
The count of comments on this post. 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 1080 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 1085 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