patch method
- Revision request,
- String fileId,
- String revisionId,
- {String $fields}
Updates a revision.
request
- The metadata request object.
Request parameters:
fileId
- The ID for the file.
revisionId
- The ID for the revision.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Revision.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<Revision> patch(
Revision request, core.String fileId, core.String revisionId,
{core.String $fields}) {
var _url;
var _queryParams = new core.Map<core.String, core.List<core.String>>();
var _uploadMedia;
var _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
var _body;
if (request != null) {
_body = convert_1.json.encode((request).toJson());
}
if (fileId == null) {
throw new core.ArgumentError("Parameter fileId is required.");
}
if (revisionId == null) {
throw new core.ArgumentError("Parameter revisionId is required.");
}
if ($fields != null) {
_queryParams["fields"] = [$fields];
}
_url = 'files/' +
commons.Escaper.ecapeVariable('$fileId') +
'/revisions/' +
commons.Escaper.ecapeVariable('$revisionId');
var _response = _requester.request(_url, "PATCH",
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions);
return _response.then((data) => new Revision.fromJson(data));
}