signalDecisionReportPost abstract method

  1. @Post.new(path: '/signal/decision/report')
Future<Response<SignalDecisionReportResponse>> signalDecisionReportPost({
  1. @Body.new() required SignalDecisionReportRequest? body,
})

Report whether you initiated an ACH transaction

Implementation

@Post(path: '/signal/decision/report')
Future<chopper.Response<SignalDecisionReportResponse>>
    signalDecisionReportPost(
        {@Body() required SignalDecisionReportRequest? body});