Class Change
A change to a file or shared drive.
public class Change : IDirectResponseSchema
- Inheritance
-
Change
- Implements
-
IDirectResponseSchema
- Inherited Members
Constructors
Change()
public Change()
Properties
ChangeType
The type of the change. Possible values are file and drive.
public virtual string ChangeType { get; set; }
Property Value
Drive
The updated state of the shared drive. Present if the changeType is drive, the user is still a member of the shared drive, and the shared drive has not been deleted.
public virtual Drive Drive { get; set; }
Property Value
DriveId
The ID of the shared drive associated with this change.
public virtual string DriveId { get; set; }
Property Value
ETag
The ETag of the item.
public virtual string ETag { get; set; }
Property Value
File
The updated state of the file. Present if the type is file and the file has not been removed from this list of changes.
public virtual File File { get; set; }
Property Value
FileId
The ID of the file which has changed.
public virtual string FileId { get; set; }
Property Value
Kind
Identifies what kind of resource this is. Value: the fixed string "drive#change".
public virtual string Kind { get; set; }
Property Value
Removed
Whether the file or shared drive has been removed from this list of changes, for example by deletion or loss of access.
public virtual bool? Removed { get; set; }
Property Value
- bool?
TeamDrive
Deprecated - use drive instead.
public virtual TeamDrive TeamDrive { get; set; }
Property Value
TeamDriveId
Deprecated - use driveId instead.
public virtual string TeamDriveId { get; set; }
Property Value
Time
public virtual DateTime? Time { get; set; }
Property Value
TimeRaw
The time of this change (RFC 3339 date-time).
public virtual string TimeRaw { get; set; }
Property Value
Type
Deprecated - use changeType instead.
public virtual string Type { get; set; }