Show / Hide Table of Contents

Class RoleAssignment

Inheritance
System.Object
RoleAssignment
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class RoleAssignment : IDirectResponseSchema

Properties

AssignedTo

The unique ID of the user this role is assigned to.

Declaration
[JsonProperty("assignedTo")]
public virtual string AssignedTo { get; set; }
Property Value
Type Description
System.String

ETag

ETag of the resource.

Declaration
[JsonProperty("etag")]
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Kind

The type of the API resource. This is always admin#directory#roleAssignment.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

OrgUnitId

If the role is restricted to an organization unit, this contains the ID for the organization unit the exercise of this role is restricted to.

Declaration
[JsonProperty("orgUnitId")]
public virtual string OrgUnitId { get; set; }
Property Value
Type Description
System.String

RoleAssignmentId

ID of this roleAssignment.

Declaration
[JsonProperty("roleAssignmentId")]
public virtual long? RoleAssignmentId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

RoleId

The ID of the role that is assigned.

Declaration
[JsonProperty("roleId")]
public virtual long? RoleId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ScopeType

The scope in which this role is assigned.

Declaration
[JsonProperty("scopeType")]
public virtual string ScopeType { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top