catalogMetadataChoicesRetrieve method

Future<void> catalogMetadataChoicesRetrieve()

GET Query metadata choices Params: field_key scope org

Implementation

Future<void> catalogMetadataChoicesRetrieve() async {
  final response = await catalogMetadataChoicesRetrieveWithHttpInfo();
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}