creditRelayGetPost method

Future<Response<AssetReportGetResponse>> creditRelayGetPost({
  1. required CreditRelayGetRequest? body,
})

Retrieve the reports associated with a Relay token that was shared with you

Implementation

Future<chopper.Response<AssetReportGetResponse>> creditRelayGetPost(
    {required CreditRelayGetRequest? body}) {
  generatedMapping.putIfAbsent(
      AssetReportGetResponse, () => AssetReportGetResponse.fromJsonFactory);

  return _creditRelayGetPost(body: body);
}