Class: Google::Apis::Oauth2V1::Userinfoplus
- Inherits:
-
Object
- Object
- Google::Apis::Oauth2V1::Userinfoplus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/oauth2_v1/classes.rb,
generated/google/apis/oauth2_v1/representations.rb,
generated/google/apis/oauth2_v1/representations.rb
Instance Attribute Summary collapse
-
#email ⇒ String
The user's email address.
-
#family_name ⇒ String
The user's last name.
-
#gender ⇒ String
The user's gender.
-
#given_name ⇒ String
The user's first name.
-
#hd ⇒ String
The hosted domain e.g.
-
#id ⇒ String
The obfuscated ID of the user.
-
#link ⇒ String
URL of the profile page.
-
#locale ⇒ String
The user's preferred locale.
-
#name ⇒ String
The user's full name.
-
#picture ⇒ String
URL of the user's picture image.
-
#verified_email ⇒ Boolean
(also: #verified_email?)
Boolean flag which is true if the email address is verified.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Userinfoplus
constructor
A new instance of Userinfoplus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Userinfoplus
Returns a new instance of Userinfoplus
300 301 302 |
# File 'generated/google/apis/oauth2_v1/classes.rb', line 300 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
The user's email address.
Corresponds to the JSON property email
246 247 248 |
# File 'generated/google/apis/oauth2_v1/classes.rb', line 246 def email @email end |
#family_name ⇒ String
The user's last name.
Corresponds to the JSON property family_name
251 252 253 |
# File 'generated/google/apis/oauth2_v1/classes.rb', line 251 def family_name @family_name end |
#gender ⇒ String
The user's gender.
Corresponds to the JSON property gender
256 257 258 |
# File 'generated/google/apis/oauth2_v1/classes.rb', line 256 def gender @gender end |
#given_name ⇒ String
The user's first name.
Corresponds to the JSON property given_name
261 262 263 |
# File 'generated/google/apis/oauth2_v1/classes.rb', line 261 def given_name @given_name end |
#hd ⇒ String
The hosted domain e.g. example.com if the user is Google apps user.
Corresponds to the JSON property hd
266 267 268 |
# File 'generated/google/apis/oauth2_v1/classes.rb', line 266 def hd @hd end |
#id ⇒ String
The obfuscated ID of the user.
Corresponds to the JSON property id
271 272 273 |
# File 'generated/google/apis/oauth2_v1/classes.rb', line 271 def id @id end |
#link ⇒ String
URL of the profile page.
Corresponds to the JSON property link
276 277 278 |
# File 'generated/google/apis/oauth2_v1/classes.rb', line 276 def link @link end |
#locale ⇒ String
The user's preferred locale.
Corresponds to the JSON property locale
281 282 283 |
# File 'generated/google/apis/oauth2_v1/classes.rb', line 281 def locale @locale end |
#name ⇒ String
The user's full name.
Corresponds to the JSON property name
286 287 288 |
# File 'generated/google/apis/oauth2_v1/classes.rb', line 286 def name @name end |
#picture ⇒ String
URL of the user's picture image.
Corresponds to the JSON property picture
291 292 293 |
# File 'generated/google/apis/oauth2_v1/classes.rb', line 291 def picture @picture end |
#verified_email ⇒ Boolean Also known as: verified_email?
Boolean flag which is true if the email address is verified. Always verified
because we only return the user's primary email address.
Corresponds to the JSON property verified_email
297 298 299 |
# File 'generated/google/apis/oauth2_v1/classes.rb', line 297 def verified_email @verified_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
305 306 307 308 309 310 311 312 313 314 315 316 317 |
# File 'generated/google/apis/oauth2_v1/classes.rb', line 305 def update!(**args) @email = args[:email] if args.key?(:email) @family_name = args[:family_name] if args.key?(:family_name) @gender = args[:gender] if args.key?(:gender) @given_name = args[:given_name] if args.key?(:given_name) @hd = args[:hd] if args.key?(:hd) @id = args[:id] if args.key?(:id) @link = args[:link] if args.key?(:link) @locale = args[:locale] if args.key?(:locale) @name = args[:name] if args.key?(:name) @picture = args[:picture] if args.key?(:picture) @verified_email = args[:verified_email] if args.key?(:verified_email) end |