class Google::Apis::PlusV1::Comment::Actor

The person who posted this comment.

Attributes

client_specific_actor_info[RW]

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

display_name[RW]

The name of this actor, suitable for display. Corresponds to the JSON property `displayName` @return [String]

id[RW]

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

image[RW]

The image representation of this actor. Corresponds to the JSON property `image` @return [Google::Apis::PlusV1::Comment::Actor::Image]

url[RW]

A link to the Person resource for this actor. Corresponds to the JSON property `url` @return [String]

verification[RW]

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

Public Class Methods

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