Show / Hide Table of Contents

Class Privilege

Inheritance
System.Object
Privilege
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 Privilege : IDirectResponseSchema

Properties

ChildPrivileges

A list of child privileges. Privileges for a service form a tree. Each privilege can have a list of child privileges; this list is empty for a leaf privilege.

Declaration
[JsonProperty("childPrivileges")]
public virtual IList<Privilege> ChildPrivileges { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Privilege>

ETag

ETag of the resource.

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

IsOuScopable

If the privilege can be restricted to an organization unit.

Declaration
[JsonProperty("isOuScopable")]
public virtual bool? IsOuScopable { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Kind

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

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

PrivilegeName

The name of the privilege.

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

ServiceId

The obfuscated ID of the service this privilege is for. This value is returned with Privileges.list().

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

ServiceName

The name of the service this privilege is for.

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

Implements

IDirectResponseSchema
Back to top