Class: Google::Apis::IamcredentialsV1::GenerateAccessTokenResponse

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

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_tokenString

The OAuth 2.0 access token. Corresponds to the JSON property accessToken

Returns:

  • (String)


76
77
78
# File 'generated/google/apis/iamcredentials_v1/classes.rb', line 76

def access_token
  @access_token
end

#expire_timeString

Token expiration time. The expiration time is always set. Corresponds to the JSON property expireTime

Returns:

  • (String)


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