update method
Future<Annotation>
update(
- Annotation request,
- String annotationId, {
- String? source,
- String? $fields,
Updates an existing annotation.
request
- The metadata request object.
Request parameters:
annotationId
- The ID for the annotation to update.
source
- String to identify the originator of this request.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Annotation.
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<Annotation> update(
Annotation request,
core.String annotationId, {
core.String? source,
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
if (source != null) 'source': [source],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'books/v1/mylibrary/annotations/' +
commons.escapeVariable('$annotationId');
final response_ = await _requester.request(
url_,
'PUT',
body: body_,
queryParams: queryParams_,
);
return Annotation.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}