Show / Hide Table of Contents

Class HandleAccessRequestDetails

The details for handling access request.

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

Properties

Action

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

The action take by persona

Remarks

Required

Message

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

Action justification or details.

In this article
Back to top