class Google::Apis::PlusDomainsV1::Activity::Actor
The person who performed this activity.
Attributes
Actor info specific to particular clients. Corresponds to the JSON property `clientSpecificActorInfo` @return [Google::Apis::PlusDomainsV1::Activity::Actor::ClientSpecificActorInfo]
The name of the actor, suitable for display. Corresponds to the JSON property `displayName` @return [String]
The ID of the actor's Person resource. Corresponds to the JSON property `id` @return [String]
The image representation of the actor. Corresponds to the JSON property `image` @return [Google::Apis::PlusDomainsV1::Activity::Actor::Image]
An object representation of the individual components of name. Corresponds to the JSON property `name` @return [Google::Apis::PlusDomainsV1::Activity::Actor::Name]
The link to the actor's Google profile. Corresponds to the JSON property `url` @return [String]
Verification status of actor. Corresponds to the JSON property `verification` @return [Google::Apis::PlusDomainsV1::Activity::Actor::Verification]
Public Class Methods
# File generated/google/apis/plus_domains_v1/classes.rb, line 243 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/plus_domains_v1/classes.rb, line 248 def update!(**args) @client_specific_actor_info = args[:client_specific_actor_info] if args.key?(:client_specific_actor_info) @display_name = args[:display_name] if args.key?(:display_name) @id = args[:id] if args.key?(:id) @image = args[:image] if args.key?(:image) @name = args[:name] if args.key?(:name) @url = args[:url] if args.key?(:url) @verification = args[:verification] if args.key?(:verification) end