sandboxTransferRepaymentSimulatePost method

Future<Response<SandboxTransferRepaymentSimulateResponse>> sandboxTransferRepaymentSimulatePost({
  1. required SandboxTransferRepaymentSimulateRequest? body,
})

Trigger the creation of a repayment

Implementation

Future<chopper.Response<SandboxTransferRepaymentSimulateResponse>>
    sandboxTransferRepaymentSimulatePost(
        {required SandboxTransferRepaymentSimulateRequest? body}) {
  generatedMapping.putIfAbsent(SandboxTransferRepaymentSimulateResponse,
      () => SandboxTransferRepaymentSimulateResponse.fromJsonFactory);

  return _sandboxTransferRepaymentSimulatePost(body: body);
}