Types > OrderDisplay
Storefront APITypesOrderDisplay
OrderDisplay

Description

Fields

amount_due: Int!

How much the customer must pay for the order, as will be displayed during checkout


customer_balance_spent: Int!

Customer balance spent as will be displayed during checkout


discount: Int!

Total discount as will be displayed during checkout


paid: Int!

Amount paid (sum of manual payments or captured payment amount)


shipping: Int!

Shipping price as will be displayed during checkout


subtotal: Int!

Subtotal amount as will be displayed during checkout


tax: Int!

Total tax as will be displayed during checkout


total: Int!

Total price as will be displayed during checkout


Used By

Types

StorefrontOrder

Preview (typescript)

interface OrderDisplay {
amount_due: number
customer_balance_spent: number
discount: number
paid: number
shipping: number
subtotal: number
tax: number
total: number
}