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 photo. A picture shown next to the person's name to help others recognize the person.
Instance Attribute Summary collapse
-
#default ⇒ Boolean
(also: #default?)
True if the photo is a default photo; false if the photo is a user-provided photo.
-
#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.
Constructor Details
#initialize(**args) ⇒ Photo
Returns a new instance of Photo.
2084 2085 2086 |
# File 'generated/google/apis/people_v1/classes.rb', line 2084 def initialize(**args) update!(**args) end |
Instance Attribute Details
#default ⇒ Boolean Also known as: default?
True if the photo is a default photo; false if the photo is a user-provided
photo.
Corresponds to the JSON property default
2068 2069 2070 |
# File 'generated/google/apis/people_v1/classes.rb', line 2068 def default @default end |
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
2074 2075 2076 |
# File 'generated/google/apis/people_v1/classes.rb', line 2074 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, where
sizeis the size in
pixels. Example: https://lh3.googleusercontent.com/-T_wVWLlmg7w/AAAAAAAAAAI/
AAAAAAAABa8/00gzXvDBYqw/s100/photo.jpg?sz=50
Corresponds to the JSON property
url`
2082 2083 2084 |
# File 'generated/google/apis/people_v1/classes.rb', line 2082 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2089 2090 2091 2092 2093 |
# File 'generated/google/apis/people_v1/classes.rb', line 2089 def update!(**args) @default = args[:default] if args.key?(:default) @metadata = args[:metadata] if args.key?(:metadata) @url = args[:url] if args.key?(:url) end |