OrderPostageInput
No description
input OrderPostageInput {
method: String!
taxPercentage: Float!
requestDate: DateTime
gross: Float!
net: Float!
tax: Float!
partialDeliveryAllowed: YesNo
pickUpLocationId: Int
carrier: String
overruled: YesNo
}
Fields
OrderPostageInput.method ● String! non-null scalar
The chosen shipping method
OrderPostageInput.taxPercentage ● Float! non-null scalar
The shipping costs tax percentage
OrderPostageInput.requestDate ● DateTime scalar
The provided delivery date for the Order
OrderPostageInput.gross ● Float! non-null scalar
The shipping costs excluding tax
OrderPostageInput.net ● Float! non-null scalar
The shipping costs including tax
OrderPostageInput.tax ● Float! non-null scalar
The shipping costs tax
OrderPostageInput.partialDeliveryAllowed ● YesNo enum
Is partial delivery allowed for this Order
OrderPostageInput.pickUpLocationId ● Int scalar
ID of the pick up location when the Order's shipping method is PICKUP
OrderPostageInput.carrier ● String scalar
The selected carrier for this Order
OrderPostageInput.overruled ● YesNo enum
Whether the shipping costs for this order are overruled, if N, the shipping costs will be recalculated on every mutation
Member Of
OrderCreateInput input