Show / Hide Table of Contents

Class QueryDriveActivityRequest

The request message for querying Drive activity.

Inheritance
System.Object
QueryDriveActivityRequest
Implements
IDirectResponseSchema
Namespace: Google.Apis.DriveActivity.v2.Data
Assembly: Google.Apis.DriveActivity.v2.dll
Syntax
public class QueryDriveActivityRequest : object, IDirectResponseSchema

Properties

AncestorName

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

Declaration
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
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
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
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
public virtual Nullable<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
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top