Class: Google::Apis::PlusV1::Comment::Actor::Image

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/plus_v1/classes.rb,
generated/google/apis/plus_v1/representations.rb,
generated/google/apis/plus_v1/representations.rb

Overview

The image representation of this actor.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Image

Returns a new instance of Image.



1147
1148
1149
# File 'generated/google/apis/plus_v1/classes.rb', line 1147

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#urlString

The URL of the actor's profile photo. To resize the image and crop it to a square, append the query string ?sz=x, where x is the dimension in pixels of each side. Corresponds to the JSON property url

Returns:

  • (String)


1145
1146
1147
# File 'generated/google/apis/plus_v1/classes.rb', line 1145

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1152
1153
1154
# File 'generated/google/apis/plus_v1/classes.rb', line 1152

def update!(**args)
  @url = args[:url] if args.key?(:url)
end