Class: Google::Apis::Oauth2V2::Tokeninfo
- Inherits:
-
Object
- Object
- Google::Apis::Oauth2V2::Tokeninfo
- 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
-
#access_type ⇒ String
The access type granted with this token.
-
#audience ⇒ String
Who is the intended audience for this token.
-
#email ⇒ String
The email address of the user.
-
#expires_in ⇒ Fixnum
The expiry time of the token, as number of seconds left until expiry.
-
#issued_to ⇒ String
To whom was the token issued to.
-
#scope ⇒ String
The space separated list of scopes granted to this token.
-
#token_handle ⇒ String
The token handle associated with this token.
-
#user_id ⇒ String
The obfuscated user id.
-
#verified_email ⇒ Boolean
(also: #verified_email?)
Boolean flag which is true if the email address is verified.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Tokeninfo
constructor
A new instance of Tokeninfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Tokeninfo
Returns a new instance of Tokeninfo.
77 78 79 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 77 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_type ⇒ String
The access type granted with this token. It can be offline or online.
Corresponds to the JSON property access_type
32 33 34 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 32 def access_type @access_type end |
#audience ⇒ String
Who is the intended audience for this token. In general the same as issued_to.
Corresponds to the JSON property audience
37 38 39 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 37 def audience @audience end |
#email ⇒ String
The email address of the user. Present only if the email scope is present in
the request.
Corresponds to the JSON property email
43 44 45 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 43 def email @email end |
#expires_in ⇒ Fixnum
The expiry time of the token, as number of seconds left until expiry.
Corresponds to the JSON property expires_in
48 49 50 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 48 def expires_in @expires_in end |
#issued_to ⇒ String
To whom was the token issued to. In general the same as audience.
Corresponds to the JSON property issued_to
53 54 55 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 53 def issued_to @issued_to end |
#scope ⇒ String
The space separated list of scopes granted to this token.
Corresponds to the JSON property scope
58 59 60 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 58 def scope @scope end |
#token_handle ⇒ String
The token handle associated with this token.
Corresponds to the JSON property token_handle
63 64 65 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 63 def token_handle @token_handle end |
#user_id ⇒ String
The obfuscated user id.
Corresponds to the JSON property user_id
68 69 70 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 68 def user_id @user_id end |
#verified_email ⇒ Boolean Also known as: verified_email?
Boolean flag which is true if the email address is verified. Present only if
the email scope is present in the request.
Corresponds to the JSON property verified_email
74 75 76 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 74 def verified_email @verified_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
82 83 84 85 86 87 88 89 90 91 92 |
# File 'generated/google/apis/oauth2_v2/classes.rb', line 82 def update!(**args) @access_type = args[:access_type] if args.key?(:access_type) @audience = args[:audience] if args.key?(:audience) @email = args[:email] if args.key?(:email) @expires_in = args[:expires_in] if args.key?(:expires_in) @issued_to = args[:issued_to] if args.key?(:issued_to) @scope = args[:scope] if args.key?(:scope) @token_handle = args[:token_handle] if args.key?(:token_handle) @user_id = args[:user_id] if args.key?(:user_id) @verified_email = args[:verified_email] if args.key?(:verified_email) end |