Class: Google::Apis::Oauth2V2::Userinfo
- Inherits:
-
Object
- Object
- Google::Apis::Oauth2V2::Userinfo
- 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) ⇒ Userinfo
constructor
A new instance of Userinfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Userinfo
Returns a new instance of Userinfo.
144 145 146 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 144 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
The user's email address.
Corresponds to the JSON property email
90 91 92 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 90 def email @email end |
#family_name ⇒ String
The user's last name.
Corresponds to the JSON property family_name
95 96 97 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 95 def family_name @family_name end |
#gender ⇒ String
The user's gender.
Corresponds to the JSON property gender
100 101 102 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 100 def gender @gender end |
#given_name ⇒ String
The user's first name.
Corresponds to the JSON property given_name
105 106 107 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 105 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
110 111 112 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 110 def hd @hd end |
#id ⇒ String
The obfuscated ID of the user.
Corresponds to the JSON property id
115 116 117 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 115 def id @id end |
#link ⇒ String
URL of the profile page.
Corresponds to the JSON property link
120 121 122 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 120 def link @link end |
#locale ⇒ String
The user's preferred locale.
Corresponds to the JSON property locale
125 126 127 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 125 def locale @locale end |
#name ⇒ String
The user's full name.
Corresponds to the JSON property name
130 131 132 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 130 def name @name end |
#picture ⇒ String
URL of the user's picture image.
Corresponds to the JSON property picture
135 136 137 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 135 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
141 142 143 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 141 def verified_email @verified_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
149 150 151 152 153 154 155 156 157 158 159 160 161 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 149 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 |