Show / Hide Table of Contents

Class ApprovalAction

Information about the approval action of DevOps deployment stages.

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

Properties

Action

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

The action of the user on the DevOps deployment stage.

Remarks

Required

Reason

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

The reason for approving or rejecting the deployment.

SubjectId

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

The subject ID of the user who approves or disapproves a DevOps deployment stage.

Remarks

Required

In this article
Back to top