CheckoutLinePrice Object
Description
Pricing information for a checkout line item including taxes.
Declaration
type CheckoutLinePrice {
taxes: [CheckoutTax!]
beforeTaxes: Float!
base: Float!
subtotal: Float!
subtotalBeforeTaxes: Float!
}
Fields
| Name | Type | Description |
|---|---|---|
taxes | [CheckoutTax!] | Taxes applied to this line item. |
beforeTaxes | Float! | Price before taxes are applied. |
base | Float! | Base price of the line item. |
subtotal | Float! | Subtotal for this line item including taxes. |
subtotalBeforeTaxes | Float! | Subtotal for this line item before taxes. |