Show / Hide Table of Contents

Class PermissionChange

A change of the permission setting on an item.

Inheritance
System.Object
PermissionChange
Implements
IDirectResponseSchema
Namespace: Google.Apis.DriveActivity.v2.Data
Assembly: Google.Apis.DriveActivity.v2.dll
Syntax
public class PermissionChange : object, IDirectResponseSchema

Properties

AddedPermissions

The set of permissions added by this change.

Declaration
public virtual IList<Permission> AddedPermissions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Permission>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

RemovedPermissions

The set of permissions removed by this change.

Declaration
public virtual IList<Permission> RemovedPermissions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Permission>

Implements

IDirectResponseSchema
Back to top