Show / Hide Table of Contents

Class ThinAssociationAuthorizationResponse

Inheritance
object
ThinAssociationAuthorizationResponse
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 ThinAssociationAuthorizationResponse

Properties

AssociationResult

Declaration
[Required(ErrorMessage = "AssociationResult is required.")]
[JsonProperty(PropertyName = "associationResult")]
[JsonConverter(typeof(StringEnumConverter))]
public ThinAssociationAuthorizationResponse.AssociationResultEnum? AssociationResult { get; set; }
Property Value
Type Description
ThinAssociationAuthorizationResponse.AssociationResultEnum?

The association verification result.

Remarks

Required

DecisionCacheDuration

Declaration
[JsonProperty(PropertyName = "decisionCacheDuration")]
public string DecisionCacheDuration { get; set; }
Property Value
Type Description
string

The decision cache duration.

Responses

Declaration
[Required(ErrorMessage = "Responses is required.")]
[JsonProperty(PropertyName = "responses")]
public List<ThinAuthorizationResponse> Responses { get; set; }
Property Value
Type Description
List<ThinAuthorizationResponse>

The authorization responses.

Remarks

Required

In this article
Back to top