Show / Hide Table of Contents

Class QueryDriveActivityRequest

The request message for querying Drive activity.

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

Properties

AncestorName

Return activities for this Drive folder and all children and descendants. The format is "items/ITEM_ID".

Declaration
[JsonProperty("ancestorName")]
public virtual string AncestorName { get; set; }
Property Value
Type Description
System.String

ConsolidationStrategy

Details on how to consolidate related actions that make up the activity. If not set, then related actions will not be consolidated.

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

ETag

The ETag of the item.

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

Filter

Declaration
[JsonProperty("filter")]
public virtual string Filter { get; set; }
Property Value
Type Description
System.String

ItemName

Return activities for this Drive item. The format is "items/ITEM_ID".

Declaration
[JsonProperty("itemName")]
public virtual string ItemName { get; set; }
Property Value
Type Description
System.String

PageSize

The requested number of activity to return. If not set, a default value will be used.

Declaration
[JsonProperty("pageSize")]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

The next_page_token value returned from a previous QueryDriveActivity request, if any.

Declaration
[JsonProperty("pageToken")]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top