catalogIncrementRetrieve method
GET Retrieve auto increment information. Params: org key
Implementation
Future<void> catalogIncrementRetrieve() async {
final response = await catalogIncrementRetrieveWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}