Class: Google::Apis::PeopleV1::Photo
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::Photo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/people_v1/classes.rb,
generated/google/apis/people_v1/representations.rb,
generated/google/apis/people_v1/representations.rb
Overview
A person's read-only photo. A picture shown next to the person's name to help others recognize the person.
Instance Attribute Summary collapse
-
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
-
#url ⇒ String
The URL of the photo.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Photo
constructor
A new instance of Photo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Photo
Returns a new instance of Photo
1415 1416 1417 |
# File 'generated/google/apis/people_v1/classes.rb', line 1415 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
1405 1406 1407 |
# File 'generated/google/apis/people_v1/classes.rb', line 1405 def @metadata end |
#url ⇒ String
The URL of the photo. You can change the desired size by appending a query
parameter sz=<size>
at the end of the url. Example:
https://lh3.googleusercontent.com/-T_wVWLlmg7w/AAAAAAAAAAI/AAAAAAAABa8/
00gzXvDBYqw/s100/photo.jpg?sz=50
Corresponds to the JSON property url
1413 1414 1415 |
# File 'generated/google/apis/people_v1/classes.rb', line 1413 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1420 1421 1422 1423 |
# File 'generated/google/apis/people_v1/classes.rb', line 1420 def update!(**args) @metadata = args[:metadata] if args.key?(:metadata) @url = args[:url] if args.key?(:url) end |