class Google::Apis::PlusV1::Activity::Object::Actor
If this activity's object is itself another activity, such as when a person reshares an activity, this property specifies the original activity's actor.
Attributes
Actor info specific to particular clients. Corresponds to the JSON property `clientSpecificActorInfo` @return [Google::Apis::PlusV1::Activity::Object::Actor::ClientSpecificActorInfo]
The original actor's name, which is suitable for display. Corresponds to the JSON property `displayName` @return [String]
ID of the original actor. Corresponds to the JSON property `id` @return [String]
The image representation of the original actor. Corresponds to the JSON property `image` @return [Google::Apis::PlusV1::Activity::Object::Actor::Image]
A link to the original 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::PlusV1::Activity::Object::Actor::Verification]
Public Class Methods
# File generated/google/apis/plus_v1/classes.rb, line 469 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/plus_v1/classes.rb, line 474 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) @url = args[:url] if args.key?(:url) @verification = args[:verification] if args.key?(:verification) end