PriceInput Input
Description
Specifies pricing details for an item, including base price, pre-tax price, and applicable taxes.
Declaration
input PriceInput {
base: Float
beforeTaxes: Float
taxes: [TaxInput]
}
Fields
| Name | Type | Description |
|---|---|---|
base | Float | Base price of the item before any adjustments or taxes. |
beforeTaxes | Float | Price of the item before taxes are applied. |
taxes | [TaxInput] | List of taxes applied to the item. |