paymentIdPut method

Future<Response<WebApiModulesBillingPaymentPayment>> paymentIdPut({
  1. required String? id,
  2. required WebApiModulesBillingPaymentPayment? body,
})

@param id

Implementation

Future<chopper.Response<WebApiModulesBillingPaymentPayment>> paymentIdPut(
    {required String? id,
    required WebApiModulesBillingPaymentPayment? body}) {
  generatedMapping.putIfAbsent(WebApiModulesBillingPaymentPayment,
      () => WebApiModulesBillingPaymentPayment.fromJsonFactory);

  return _paymentIdPut(id: id, body: body);
}