Show / Hide Table of Contents

Class ApproverDetail

It contains appprovers details such as who approved it, when he approved and any details the approver would have entered as a part of approval process.

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

Properties

ApprovalAction

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

The action done by the approver.

ApprovalComment

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

Comment specified by the approver of the request.

ApproverId

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

The userId of the approver.

TimeApprovedForAccess

Declaration
[JsonProperty(PropertyName = "timeApprovedForAccess")]
public DateTime? TimeApprovedForAccess { get; set; }
Property Value
Type Description
DateTime?

Time for when the privilegedApi request should start that is authorized by the customer in RFC 3339 timestamp format.Example: '2020-05-22T21:10:29.600Z'

TimeOfAuthorization

Declaration
[JsonProperty(PropertyName = "timeOfAuthorization")]
public DateTime? TimeOfAuthorization { get; set; }
Property Value
Type Description
DateTime?

Time when the privilegedApi request was authorized by the customer in RFC 3339 timestamp format.Example: '2020-05-22T21:10:29.600Z'

In this article
Back to top