Show / Hide Table of Contents

Class ApprovalRuleCollection

List of approval rules which must be statisfied before pull requests which match the rules can be merged

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

Properties

Items

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

List of approval rules.

Remarks

Required

In this article
Back to top