Show / Hide Table of Contents

Class TargetReference

A lightweight reference to the target of activity.

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

Properties

Drive

The target is a shared drive.

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

DriveItem

The target is a Drive item.

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

ETag

The ETag of the item.

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

TeamDrive

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

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

Implements

IDirectResponseSchema
Back to top