Show / Hide Table of Contents

Class ClientCredentialsResponse

Inheritance
object
ClientCredentialsResponse
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydataplaneService.Models
Assembly: OCI.DotNetSDK.Identitydataplane.dll
Syntax
public class ClientCredentialsResponse

Properties

AccessToken

Declaration
[Required(ErrorMessage = "AccessToken is required.")]
[JsonProperty(PropertyName = "access_token")]
public string AccessToken { get; set; }
Property Value
Type Description
string

The access token.

Remarks

Required

ExpiresIn

Declaration
[Required(ErrorMessage = "ExpiresIn is required.")]
[JsonProperty(PropertyName = "expires_in")]
public string ExpiresIn { get; set; }
Property Value
Type Description
string

The amount of time until the token expires.

Remarks

Required

TokenType

Declaration
[Required(ErrorMessage = "TokenType is required.")]
[JsonProperty(PropertyName = "token_type")]
public string TokenType { get; set; }
Property Value
Type Description
string

The token type.

Remarks

Required

In this article
Back to top