OrderPaymentData
No description
type OrderPaymentData {
net: Float!
gross: Float!
tax: Float!
taxPercentage: Float
method: String!
status: String
statusDate: DateTime
accountingId: String
overruled: YesNo
}
Fields
OrderPaymentData.net
● Float!
non-null scalar
The transaction cost including tax
OrderPaymentData.gross
● Float!
non-null scalar
The transaction cost excluding tax
OrderPaymentData.tax
● Float!
non-null scalar
The tax on the transaction costs
OrderPaymentData.taxPercentage
● Float
scalar
The transaction costs tax percentage
OrderPaymentData.method
● String!
non-null scalar
The paymethod for this Order
OrderPaymentData.status
● String
scalar
The transaction status
OrderPaymentData.statusDate
● DateTime
scalar
Last time the transaction status was changed
OrderPaymentData.accountingId
● String
scalar
The accountingId that belongs to this order
OrderPaymentData.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
Order
object