Class: Google::Apis::IamcredentialsV1::GenerateAccessTokenResponse
- Inherits:
-
Object
- Object
- Google::Apis::IamcredentialsV1::GenerateAccessTokenResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/iamcredentials_v1/classes.rb,
generated/google/apis/iamcredentials_v1/representations.rb,
generated/google/apis/iamcredentials_v1/representations.rb
Instance Attribute Summary collapse
-
#access_token ⇒ String
The OAuth 2.0 access token.
-
#expire_time ⇒ String
Token expiration time.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GenerateAccessTokenResponse
constructor
A new instance of GenerateAccessTokenResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GenerateAccessTokenResponse
Returns a new instance of GenerateAccessTokenResponse
84 85 86 |
# File 'generated/google/apis/iamcredentials_v1/classes.rb', line 84 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_token ⇒ String
The OAuth 2.0 access token.
Corresponds to the JSON property accessToken
76 77 78 |
# File 'generated/google/apis/iamcredentials_v1/classes.rb', line 76 def access_token @access_token end |
#expire_time ⇒ String
Token expiration time.
The expiration time is always set.
Corresponds to the JSON property expireTime
82 83 84 |
# File 'generated/google/apis/iamcredentials_v1/classes.rb', line 82 def expire_time @expire_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
89 90 91 92 |
# File 'generated/google/apis/iamcredentials_v1/classes.rb', line 89 def update!(**args) @access_token = args[:access_token] if args.key?(:access_token) @expire_time = args[:expire_time] if args.key?(:expire_time) end |