Module GapiDriveV3Service.ChangesResource

module ChangesResource: sig .. end

val getStartPageToken : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
GapiConversation.Session.t ->
GapiDriveV3Model.StartPageToken.t * GapiConversation.Session.t
Gets the starting pageToken for listing future changes.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").
std_params : Optional standard parameters.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?includeRemoved:bool ->
?pageSize:int ->
?restrictToMyDrive:bool ->
?spaces:string ->
pageToken:string ->
GapiConversation.Session.t ->
GapiDriveV3Model.ChangeList.t * GapiConversation.Session.t
Lists changes for a user.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").
std_params : Optional standard parameters.
includeRemoved : Whether to include changes indicating that items have left the view of the changes list, for example by deletion or lost access.
pageSize : The maximum number of changes to return per page.
restrictToMyDrive : Whether to restrict the results to changes inside the My Drive hierarchy. This omits changes to files such as those in the Application Data folder or shared files which have not been added to My Drive.
spaces : A comma-separated list of spaces to query within the user corpus. Supported values are 'drive', 'appDataFolder' and 'photos'.
pageToken : The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response or to the response from the getStartPageToken method.
val watch : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?includeRemoved:bool ->
?pageSize:int ->
?restrictToMyDrive:bool ->
?spaces:string ->
pageToken:string ->
GapiDriveV3Model.Channel.t ->
GapiConversation.Session.t ->
GapiDriveV3Model.Channel.t * GapiConversation.Session.t
Subscribes to changes for a user.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").
std_params : Optional standard parameters.
includeRemoved : Whether to include changes indicating that items have left the view of the changes list, for example by deletion or lost access.
pageSize : The maximum number of changes to return per page.
restrictToMyDrive : Whether to restrict the results to changes inside the My Drive hierarchy. This omits changes to files such as those in the Application Data folder or shared files which have not been added to My Drive.
spaces : A comma-separated list of spaces to query within the user corpus. Supported values are 'drive', 'appDataFolder' and 'photos'.
pageToken : The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response or to the response from the getStartPageToken method.