apiV3DbsPaymentCreate method

Future<void> apiV3DbsPaymentCreate()

Implementation

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