Show / Hide Table of Contents

Class ApproverInfo

The approver data for this approver level.

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

Properties

ApproverId

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

The group or user ocid of the approver for this approver level.

Remarks

Required

ApproverType

Declaration
[Required(ErrorMessage = "ApproverType is required.")]
[JsonProperty(PropertyName = "approverType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ApproverType? ApproverType { get; set; }
Property Value
Type Description
ApproverType?

The approver type of this approver level.

Remarks

Required

DomainId

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

The identity domain ocid of the approver.

In this article
Back to top