Class: Google::Apis::Oauth2V2::Userinfoplus
- Inherits:
-
Object
- Object
- Google::Apis::Oauth2V2::Userinfoplus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/oauth2_v2/classes.rb,
generated/google/apis/oauth2_v2/representations.rb,
generated/google/apis/oauth2_v2/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
224 225 226 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 224 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
The user's email address.
Corresponds to the JSON property email
170 171 172 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 170 def email @email end |
#family_name ⇒ String
The user's last name.
Corresponds to the JSON property family_name
175 176 177 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 175 def family_name @family_name end |
#gender ⇒ String
The user's gender.
Corresponds to the JSON property gender
180 181 182 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 180 def gender @gender end |
#given_name ⇒ String
The user's first name.
Corresponds to the JSON property given_name
185 186 187 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 185 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
190 191 192 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 190 def hd @hd end |
#id ⇒ String
The obfuscated ID of the user.
Corresponds to the JSON property id
195 196 197 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 195 def id @id end |
#link ⇒ String
URL of the profile page.
Corresponds to the JSON property link
200 201 202 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 200 def link @link end |
#locale ⇒ String
The user's preferred locale.
Corresponds to the JSON property locale
205 206 207 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 205 def locale @locale end |
#name ⇒ String
The user's full name.
Corresponds to the JSON property name
210 211 212 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 210 def name @name end |
#picture ⇒ String
URL of the user's picture image.
Corresponds to the JSON property picture
215 216 217 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 215 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
221 222 223 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 221 def verified_email @verified_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
229 230 231 232 233 234 235 236 237 238 239 240 241 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 229 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 |