Show / Hide Table of Contents

Class Reviewer

Reviewer information.

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

Properties

PrincipalId

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

Pull Request reviewer id

Remarks

Required

PrincipalName

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

the name of the principal

PrincipalState

Declaration
[JsonProperty(PropertyName = "principalState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Reviewer.PrincipalStateEnum? PrincipalState { get; set; }
Property Value
Type Description
Reviewer.PrincipalStateEnum?

The state of the principal, it can be active or inactive or suppressed for emails

PrincipalType

Declaration
[JsonProperty(PropertyName = "principalType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Reviewer.PrincipalTypeEnum? PrincipalType { get; set; }
Property Value
Type Description
Reviewer.PrincipalTypeEnum?

the type of principal

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Reviewer.StatusEnum? Status { get; set; }
Property Value
Type Description
Reviewer.StatusEnum?

The current state of the Review.

In this article
Back to top