transferRepaymentReturnListPost method

Future<Response<TransferRepaymentReturnListResponse>> transferRepaymentReturnListPost({
  1. required TransferRepaymentReturnListRequest? body,
})

List the returns included in a repayment

Implementation

Future<chopper.Response<TransferRepaymentReturnListResponse>>
    transferRepaymentReturnListPost(
        {required TransferRepaymentReturnListRequest? body}) {
  generatedMapping.putIfAbsent(TransferRepaymentReturnListResponse,
      () => TransferRepaymentReturnListResponse.fromJsonFactory);

  return _transferRepaymentReturnListPost(body: body);
}