class Google::Apis::BloggerV3::Comment::Author

The author of this Comment.

Attributes

display_name[RW]

The display name. Corresponds to the JSON property `displayName` @return [String]

id[RW]

The identifier of the creator. Corresponds to the JSON property `id` @return [String]

image[RW]

The creator's avatar. Corresponds to the JSON property `image` @return [Google::Apis::BloggerV3::Comment::Author::Image]

url[RW]

The URL of the creator's Profile page. Corresponds to the JSON property `url` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/blogger_v3/classes.rb, line 417
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 422
def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @id = args[:id] if args.key?(:id)
  @image = args[:image] if args.key?(:image)
  @url = args[:url] if args.key?(:url)
end