class Google::Apis::PlusDomainsV1::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

client_specific_actor_info[RW]

Actor info specific to particular clients. Corresponds to the JSON property `clientSpecificActorInfo` @return [Google::Apis::PlusDomainsV1::Activity::Object::Actor::ClientSpecificActorInfo]

display_name[RW]

The original actor's name, which is suitable for display. Corresponds to the JSON property `displayName` @return [String]

id[RW]

ID of the original actor. Corresponds to the JSON property `id` @return [String]

image[RW]

The image representation of the original actor. Corresponds to the JSON property `image` @return [Google::Apis::PlusDomainsV1::Activity::Object::Actor::Image]

url[RW]

A link to the original actor's Google profile. Corresponds to the JSON property `url` @return [String]

verification[RW]

Verification status of actor. Corresponds to the JSON property `verification` @return [Google::Apis::PlusDomainsV1::Activity::Object::Actor::Verification]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/plus_domains_v1/classes.rb, line 482
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 487
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