ICart
No description
interface ICart {
cartId: String!
userId: Int!
channelId: Int
carrier: String!
notes: String
reference: String
extra3: String
extra4: String
orderStatus: String
actionCode: String
couponCode: String
vouchers: [CartVoucher!]
paymentData: CartPaymentData
postageData: CartPostageData
total: CartTotal
items: [CartMainItem!]
bonusItems: [CartBaseItem!]
invoiceAddress: CartAddress!
deliveryAddress: CartAddress!
taxLevels: [CartTaxLevel!]
payMethods: [CartPaymethod!]
carriers: [CartCarrier!]
dateCreated: DateTime
dateChanged: DateTime
incentives: [CartIncentive!]
valuePoints: Int
user: IBaseUser!
}
Fields
ICart.cartId ● String! non-null scalar
The carts primary identifier
ICart.userId ● Int! non-null scalar
The userId for this cart. The userId can only be set once.
ICart.channelId ● Int scalar
The channel identifier this cart belongs to.
ICart.carrier ● String! non-null scalar
The selected carrier for this cart.
ICart.notes ● String scalar
User's remarks for this cart.
ICart.reference ● String scalar
User's reference for this cart.
ICart.extra3 ● String scalar
Additional information field that can be stored with a cart and order.
ICart.extra4 ● String scalar
Additional information field that can be stored with a cart and order.
ICart.orderStatus ● String scalar
Status of the order after processing the cart. When order status is UNFINISHED, the cart is pending payment from PSP.
ICart.actionCode ● String scalar
ActionCode that is applied to this cart. Is only filled when an valid action is applied
ICart.couponCode ● String scalar
CouponCode that is applied to this cart. Is only filled when an valid couponCode is applied
ICart.vouchers ● [CartVoucher!] list object
Array of applied voucherCodes that are applied to this cart. Is only filled when an valid action is applied
ICart.paymentData ● CartPaymentData object
Payment data for this cart.
ICart.postageData ● CartPostageData object
Postage data for this cart.