changes_start_page_token
Creates, updates, deletes, gets or lists a changes_start_page_token
resource.
Overview
Name | changes_start_page_token |
Type | Resource |
Id | googleworkspace.drivev2.changes_start_page_token |
Fields
The following fields are returned by SELECT
queries:
- get_start_page_token
Name | Datatype | Description |
---|---|---|
kind | string | Identifies what kind of resource this is. Value: the fixed string "drive#startPageToken" . (default: drive#startPageToken) |
startPageToken | string | The starting page token for listing changes. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_start_page_token | select | driveId , supportsAllDrives , supportsTeamDrives , teamDriveId | Gets the starting pageToken for listing future changes. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
driveId | string | |
supportsAllDrives | boolean | |
supportsTeamDrives | boolean | |
teamDriveId | string |
SELECT
examples
- get_start_page_token
Gets the starting pageToken for listing future changes.
SELECT
kind,
startPageToken
FROM googleworkspace.drivev2.changes_start_page_token
WHERE driveId = '{{ driveId }}'
AND supportsAllDrives = '{{ supportsAllDrives }}'
AND supportsTeamDrives = '{{ supportsTeamDrives }}'
AND teamDriveId = '{{ teamDriveId }}'
;