class StatelyDB::Common::Auth::TokenResult
@return [Integer] The expiration time in seconds.
@!attribute [r] expires_in_secs
@return [String] The token string.
@!attribute [r] token
Result from a token fetch operation
def initialize(token:, expires_in_secs:)
-
expires_in_secs(Integer) -- The number of seconds until the token expires -
token(String) -- The access token
def initialize(token:, expires_in_secs:) @token = token @expires_in_secs = expires_in_secs end