Class: Google::Apis::Oauth2V2::Userinfoplus

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

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

#emailString

The user's email address. Corresponds to the JSON property email

Returns:

  • (String)


170
171
172
# File 'generated/google/apis/oauth2_v2/classes.rb', line 170

def email
  @email
end

#family_nameString

The user's last name. Corresponds to the JSON property family_name

Returns:

  • (String)


175
176
177
# File 'generated/google/apis/oauth2_v2/classes.rb', line 175

def family_name
  @family_name
end

#genderString

The user's gender. Corresponds to the JSON property gender

Returns:

  • (String)


180
181
182
# File 'generated/google/apis/oauth2_v2/classes.rb', line 180

def gender
  @gender
end

#given_nameString

The user's first name. Corresponds to the JSON property given_name

Returns:

  • (String)


185
186
187
# File 'generated/google/apis/oauth2_v2/classes.rb', line 185

def given_name
  @given_name
end

#hdString

The hosted domain e.g. example.com if the user is Google apps user. Corresponds to the JSON property hd

Returns:

  • (String)


190
191
192
# File 'generated/google/apis/oauth2_v2/classes.rb', line 190

def hd
  @hd
end

#idString

The obfuscated ID of the user. Corresponds to the JSON property id

Returns:

  • (String)


195
196
197
# File 'generated/google/apis/oauth2_v2/classes.rb', line 195

def id
  @id
end

URL of the profile page. Corresponds to the JSON property link

Returns:

  • (String)


200
201
202
# File 'generated/google/apis/oauth2_v2/classes.rb', line 200

def link
  @link
end

#localeString

The user's preferred locale. Corresponds to the JSON property locale

Returns:

  • (String)


205
206
207
# File 'generated/google/apis/oauth2_v2/classes.rb', line 205

def locale
  @locale
end

#nameString

The user's full name. Corresponds to the JSON property name

Returns:

  • (String)


210
211
212
# File 'generated/google/apis/oauth2_v2/classes.rb', line 210

def name
  @name
end

#pictureString

URL of the user's picture image. Corresponds to the JSON property picture

Returns:

  • (String)


215
216
217
# File 'generated/google/apis/oauth2_v2/classes.rb', line 215

def picture
  @picture
end

#verified_emailBoolean 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

Returns:

  • (Boolean)


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