class Google::Apis::PlusDomainsV1::Media::Author
The person who uploaded this media.
Attributes
display_name[RW]
The author's name. Corresponds to the JSON property `displayName` @return [String]
id[RW]
ID of the author. Corresponds to the JSON property `id` @return [String]
image[RW]
The author's Google profile image. Corresponds to the JSON property `image` @return [Google::Apis::PlusDomainsV1::Media::Author::Image]
url[RW]
A link to the author's Google profile. Corresponds to the JSON property `url` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/plus_domains_v1/classes.rb, line 1791 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/plus_domains_v1/classes.rb, line 1796 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