class Google::Apis::BloggerV2::Page::Author
The author of this Page
.
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::BloggerV2::Page::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_v2/classes.rb, line 659 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 664 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