paymentIdGet method

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

@param id

Implementation

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

  return _paymentIdGet(id: id);
}