Show / Hide Table of Contents

Class Target

Information about the target of activity.

Inheritance
System.Object
Target
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.DriveActivity.v2.Data
Assembly: Google.Apis.DriveActivity.v2.dll
Syntax
public class Target : IDirectResponseSchema

Properties

Drive

The target is a shared drive.

Declaration
[JsonProperty("drive")]
public virtual Drive Drive { get; set; }
Property Value
Type Description
Drive

DriveItem

The target is a Drive item.

Declaration
[JsonProperty("driveItem")]
public virtual DriveItem DriveItem { get; set; }
Property Value
Type Description
DriveItem

ETag

The ETag of the item.

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

FileComment

The target is a comment on a Drive file.

Declaration
[JsonProperty("fileComment")]
public virtual FileComment FileComment { get; set; }
Property Value
Type Description
FileComment

TeamDrive

This field is deprecated; please use the drive field instead.

Declaration
[JsonProperty("teamDrive")]
public virtual TeamDrive TeamDrive { get; set; }
Property Value
Type Description
TeamDrive

Implements

IDirectResponseSchema
Back to top