Class: Google::Apis::PlusV1::Person::Image
- Inherits:
-
Object
- Object
- Google::Apis::PlusV1::Person::Image
- 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
-
#is_default ⇒ Boolean
(also: #is_default?)
Whether the person's profile photo is the default one Corresponds to the JSON property
isDefault
. -
#url ⇒ String
The URL of the person's profile photo.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Image
constructor
A new instance of Image.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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_default ⇒ Boolean Also known as: is_default?
Whether the person's profile photo is the default one
Corresponds to the JSON property isDefault
1761 1762 1763 |
# File 'generated/google/apis/plus_v1/classes.rb', line 1761 def is_default @is_default end |
#url ⇒ String
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
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 |