Show / Hide Table of Contents

Class Owner

Information about the owner of a Drive item.

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

Properties

Domain

The domain of the Drive item owner.

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

Drive

The drive that owns the item.

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

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

User

The user that owns the Drive item.

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

Implements

IDirectResponseSchema
Back to top