Class: Google::Apis::PlusV1::Person::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 representation of the person's profile photo.

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.



1771
1772
1773
# File 'generated/google/apis/plus_v1/classes.rb', line 1771

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

Instance Attribute Details

#is_defaultBoolean Also known as: is_default?

Whether the person's profile photo is the default one Corresponds to the JSON property isDefault

Returns:

  • (Boolean)


1761
1762
1763
# File 'generated/google/apis/plus_v1/classes.rb', line 1761

def is_default
  @is_default
end

#urlString

The URL of the person'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)


1769
1770
1771
# File 'generated/google/apis/plus_v1/classes.rb', line 1769

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1776
1777
1778
1779
# File 'generated/google/apis/plus_v1/classes.rb', line 1776

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