purchaseorderPurchaseorderidDocumentDocumentidImageImageidGet method

Future<Response<FwStandardGridsAppDocumentGetDocumentImageResponse>> purchaseorderPurchaseorderidDocumentDocumentidImageImageidGet({
  1. required String? purchaseorderid,
  2. required String? documentid,
  3. required String? imageid,
})

Get a fullsize image. @param purchaseorderid Unique identifier @param documentid Unique identifier @param imageid Unique identifier

Implementation

Future<chopper.Response<FwStandardGridsAppDocumentGetDocumentImageResponse>>
    purchaseorderPurchaseorderidDocumentDocumentidImageImageidGet({
  required String? purchaseorderid,
  required String? documentid,
  required String? imageid,
}) {
  generatedMapping.putIfAbsent(
      FwStandardGridsAppDocumentGetDocumentImageResponse,
      () =>
          FwStandardGridsAppDocumentGetDocumentImageResponse.fromJsonFactory);

  return _purchaseorderPurchaseorderidDocumentDocumentidImageImageidGet(
      purchaseorderid: purchaseorderid,
      documentid: documentid,
      imageid: imageid);
}