creditAssetReportFreddieMacGetPost method

Future<Response<AssetReportFreddieGetResponse>> creditAssetReportFreddieMacGetPost({
  1. required AssetReportFreddieGetRequest? body,
})

Retrieve an Asset Report with Freddie Mac format. Only Freddie Mac can use this endpoint.

Implementation

Future<chopper.Response<AssetReportFreddieGetResponse>>
    creditAssetReportFreddieMacGetPost(
        {required AssetReportFreddieGetRequest? body}) {
  generatedMapping.putIfAbsent(AssetReportFreddieGetResponse,
      () => AssetReportFreddieGetResponse.fromJsonFactory);

  return _creditAssetReportFreddieMacGetPost(body: body);
}