signalDecisionReportPost method

Future<Response<SignalDecisionReportResponse>> signalDecisionReportPost({
  1. required SignalDecisionReportRequest? body,
})

Report whether you initiated an ACH transaction

Implementation

Future<chopper.Response<SignalDecisionReportResponse>>
    signalDecisionReportPost({required SignalDecisionReportRequest? body}) {
  generatedMapping.putIfAbsent(SignalDecisionReportResponse,
      () => SignalDecisionReportResponse.fromJsonFactory);

  return _signalDecisionReportPost(body: body);
}