getPackagingInstructionsDetermination method

Future<Response<Json>> getPackagingInstructionsDetermination({
  1. required String determinationScheme,
  2. String? plant,
  3. String? materialNumber,
  4. String? usageIndicator,
  5. String? shipToParty,
  6. String? unloadingPoint,
  7. String? accountNumber,
  8. String? route,
  9. String? soldToParty,
  10. String? shippingType,
  11. String? shippingPoint,
  12. String? storageLocation,
  13. String? warehouseNumber,
  14. String? storageType,
  15. String? stagingArea,
  16. String? doorNumber,
  17. String? goodsSupplier,
  18. String? supplyArea,
  19. String? transportationGroup,
  20. String? loadingGroup,
  21. String? issuingPlant,
  22. String? referenceMaterial,
  23. String? mrpArea,
  24. String? sellingOrganisation,
  25. String? shippingConditions,
  26. String? shipToPartyCountry,
  27. String? productionVersion,
  28. String? containerType,
  29. String? salesOrganisation,
  30. String? batchNumber,
  31. Options? getPackingInstructionDeterminationOptions,
})

Implementation

Future<Response<Json>> getPackagingInstructionsDetermination({
  required String determinationScheme,

  String? plant,
  String? materialNumber,
  String? usageIndicator,
  String? shipToParty,
  String? unloadingPoint,
  String? accountNumber,
  String? route,
  String? soldToParty,
  String? shippingType,
  String? shippingPoint,
  String? storageLocation,
  String? warehouseNumber,
  String? storageType,
  String? stagingArea,
  String? doorNumber,
  String? goodsSupplier,
  String? supplyArea,
  String? transportationGroup,
  String? loadingGroup,
  String? issuingPlant,
  String? referenceMaterial,
  String? mrpArea,
  String? sellingOrganisation,
  String? shippingConditions,
  String? shipToPartyCountry,
  String? productionVersion,
  String? containerType,
  String? salesOrganisation,
  String? batchNumber,

  Options? getPackingInstructionDeterminationOptions,
}) async {
  return await client.get(
    OrderEndpoints.packingInstructionsDetermination,
    queryParameters: {
      'scheme': determinationScheme,
      'plant': ?plant,
      'material_number': ?materialNumber,
      'usage_indicator': ?usageIndicator,
      'ship_to_party': ?shipToParty,
      'unloading_point': ?unloadingPoint,
      'account_number': ?accountNumber,
      'route': ?route,
      'sold_to_party': ?soldToParty,
      'shipping_type': ?shippingType,
      'shipping_point': ?shippingPoint,
      'storage_location': ?storageLocation,
      'warehouse_number': ?warehouseNumber,
      'storage_type': ?storageType,
      'staging_area': ?stagingArea,
      'door_number': ?doorNumber,
      'goods_supplier': ?goodsSupplier,
      'supply_area': ?supplyArea,
      'transportation_group': ?transportationGroup,
      'loading_group': ?loadingGroup,
      'issuing_plant': ?issuingPlant,
      'reference_material': ?referenceMaterial,
      'mrp_area': ?mrpArea,
      'selling_organisation': ?sellingOrganisation,
      'shipping_conditions': ?shippingConditions,
      'ship_to_party_country': ?shipToPartyCountry,
      'production_version': ?productionVersion,
      'container_type': ?containerType,
      'sales_organisation': ?salesOrganisation,
      'batch_number': ?batchNumber,
    },
    options: getPackingInstructionDeterminationOptions,
  );
}