getPackagingInstructionsDetermination method
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,
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,
);
}