ClientCredentialsResponse¶
- 
class oci.identity_data_plane.models.ClientCredentialsResponse(**kwargs)¶
- Bases: - object- ClientCredentialsResponse model. - Methods - __init__(**kwargs)- Initializes a new ClientCredentialsResponse object with values from keyword arguments. - Attributes - access_token- [Required] Gets the access_token of this ClientCredentialsResponse. - expires_in- [Required] Gets the expires_in of this ClientCredentialsResponse. - token_type- [Required] Gets the token_type of this ClientCredentialsResponse. - 
__init__(**kwargs)¶
- Initializes a new ClientCredentialsResponse object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - access_token (str) – The value to assign to the access_token property of this ClientCredentialsResponse.
- token_type (str) – The value to assign to the token_type property of this ClientCredentialsResponse.
- expires_in (str) – The value to assign to the expires_in property of this ClientCredentialsResponse.
 
 - 
access_token¶
- [Required] Gets the access_token of this ClientCredentialsResponse. The access token. - Returns: - The access_token of this ClientCredentialsResponse. - Return type: - str 
 - 
expires_in¶
- [Required] Gets the expires_in of this ClientCredentialsResponse. The amount of time until the token expires. - Returns: - The expires_in of this ClientCredentialsResponse. - Return type: - str 
 - 
token_type¶
- [Required] Gets the token_type of this ClientCredentialsResponse. The token type. - Returns: - The token_type of this ClientCredentialsResponse. - Return type: - str 
 
-