addNote method

Future<Note> addNote(
  1. AddNoteRequest request,
  2. String accountId,
  3. String proposalId, {
  4. String? $fields,
})

Create a new note and attach it to the proposal.

The note is assigned a unique ID by the server. The proposal revision number will not increase when associated with a new note.

request - The metadata request object.

Request parameters:

accountId - Account ID of the buyer.

proposalId - The ID of the proposal to attach the note to.

$fields - Selector specifying which fields to include in a partial response.

Completes with a Note.

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<Note> addNote(
  AddNoteRequest request,
  core.String accountId,
  core.String proposalId, {
  core.String? $fields,
}) async {
  final _body = convert.json.encode(request.toJson());
  final _queryParams = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'v2beta1/accounts/' +
      commons.escapeVariable('$accountId') +
      '/proposals/' +
      commons.escapeVariable('$proposalId') +
      ':addNote';

  final _response = await _requester.request(
    _url,
    'POST',
    body: _body,
    queryParams: _queryParams,
  );
  return Note.fromJson(_response as core.Map<core.String, core.dynamic>);
}