OrderPaymentInput
No description
input OrderPaymentInput {
net: Float!
gross: Float!
tax: Float!
taxPercentage: Float!
method: String!
status: String
statusDate: DateTime
accountingId: String
overruled: YesNo
}
Fields
OrderPaymentInput.net ● Float! non-null scalar
The transaction cost including tax
OrderPaymentInput.gross ● Float! non-null scalar
The transaction cost excluding tax
OrderPaymentInput.tax ● Float! non-null scalar
The transaction cost tax
OrderPaymentInput.taxPercentage ● Float! non-null scalar
The transaction costs tax percentage
OrderPaymentInput.method ● String! non-null scalar
The paymethod for this Order
OrderPaymentInput.status ● String scalar
The transaction status
OrderPaymentInput.statusDate ● DateTime scalar
Last time the transaction status was changed
OrderPaymentInput.accountingId ● String scalar
The accountingId that belongs to this order
OrderPaymentInput.overruled ● YesNo enum
Whether the transaction costs for this order are overruled, if N, the shipping costs will be recalculated on every mutation
Member Of
OrderCreateInput input