assetReportPdfGetPost abstract method

  1. @Post.new(path: '/asset_report/pdf/get')
Future<Response<Object>> assetReportPdfGetPost({
  1. @Body.new() required AssetReportPDFGetRequest? body,
})

Retrieve a PDF Asset Report

Implementation

@Post(path: '/asset_report/pdf/get')
Future<chopper.Response<Object>> assetReportPdfGetPost(
    {@Body() required AssetReportPDFGetRequest? body});