insert method

Future<Annotation> insert(
  1. Annotation request, {
  2. String? annotationId,
  3. String? country,
  4. bool? showOnlySummaryInResponse,
  5. String? source,
  6. String? $fields,
})

Inserts a new annotation.

request - The metadata request object.

Request parameters:

annotationId - The ID for the annotation to insert.

country - ISO-3166-1 code to override the IP-based location.

showOnlySummaryInResponse - Requests that only the summary of the specified layer be provided in the response.

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> insert(
  Annotation request, {
  core.String? annotationId,
  core.String? country,
  core.bool? showOnlySummaryInResponse,
  core.String? source,
  core.String? $fields,
}) async {
  final body_ = convert.json.encode(request);
  final queryParams_ = <core.String, core.List<core.String>>{
    if (annotationId != null) 'annotationId': [annotationId],
    if (country != null) 'country': [country],
    if (showOnlySummaryInResponse != null)
      'showOnlySummaryInResponse': ['${showOnlySummaryInResponse}'],
    if (source != null) 'source': [source],
    if ($fields != null) 'fields': [$fields],
  };

  const url_ = 'books/v1/mylibrary/annotations';

  final response_ = await _requester.request(
    url_,
    'POST',
    body: body_,
    queryParams: queryParams_,
  );
  return Annotation.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}