exportDictionaryEntries method

Future<ExportDictionaryEntriesResponse> exportDictionaryEntries({
  1. required String id,
})

Exports the entries from the specified dictionary.

May throw AccessDeniedException. May throw InternalServerErrorException. May throw ResourceNotFoundException. May throw TooManyRequestException. May throw ValidationException.

Parameter id : The ID of the dictionary whose entries you want to export.

Implementation

Future<ExportDictionaryEntriesResponse> exportDictionaryEntries({
  required String id,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/v1/dictionary/${Uri.encodeComponent(id)}/entries/export',
    exceptionFnMap: _exceptionFns,
  );
  return ExportDictionaryEntriesResponse.fromJson(response);
}