Show / Hide Table of Contents

Class ApproverGroupLevel

It represents the group level detail for authorization

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

Properties

GroupId

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

id of the group.

Remarks

Required

GroupLevel

Declaration
[Required(ErrorMessage = "GroupLevel is required.")]
[JsonProperty(PropertyName = "groupLevel")]
public int? GroupLevel { get; set; }
Property Value
Type Description
int?

level of the group.

Remarks

Required

In this article
Back to top