Alokai

DeliveryOrderEntryGroup

Representation of a Delivery Order Entry Group DeliveryOrderEntryGroup

export interface DeliveryOrderEntryGroup {
	'deliveryAddress'?: Address;
	'entries'?: Array<OrderEntry>;
	'quantity'?: number;
	'totalPriceWithTax'?: Price;
}

Properties

NameRequiredTypeDescription
deliveryAddressOptionalAddress{Address} DeliveryOrderEntryGroup
entriesOptionalArray<OrderEntry>List of order entries {Array<OrderEntry>} DeliveryOrderEntryGroup
quantityOptionalnumberQuantity of order entries in a group {number} DeliveryOrderEntryGroup
totalPriceWithTaxOptionalPrice{Price} DeliveryOrderEntryGroup

Referenced Types

On this page