Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com> Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
72 lines
2.5 KiB
TypeScript
72 lines
2.5 KiB
TypeScript
/**
|
|
* @schema BaseCalculatedPriceSet
|
|
* type: object
|
|
* description: The calculated price's details.
|
|
* x-schemaName: BaseCalculatedPriceSet
|
|
* required:
|
|
* - id
|
|
* - calculated_amount
|
|
* - original_amount
|
|
* - original_amount_with_tax
|
|
* - original_amount_without_tax
|
|
* - currency_code
|
|
* properties:
|
|
* id:
|
|
* type: string
|
|
* title: id
|
|
* description: The calculated price's ID.
|
|
* is_calculated_price_price_list:
|
|
* type: boolean
|
|
* title: is_calculated_price_price_list
|
|
* description: Whether the calculated price belongs to a price list.
|
|
* is_calculated_price_tax_inclusive:
|
|
* type: boolean
|
|
* title: is_calculated_price_tax_inclusive
|
|
* description: Whether the calculated price is tax inclusive.
|
|
* calculated_amount:
|
|
* type: number
|
|
* title: calculated_amount
|
|
* description: The amount of the calculated price, or `null` if there isn't a calculated price. This is the amount shown to the customer.
|
|
* calculated_amount_with_tax:
|
|
* type: number
|
|
* title: calculated_amount_with_tax
|
|
* description: The calculated price's amount with taxes applied.
|
|
* calculated_amount_without_tax:
|
|
* type: number
|
|
* title: calculated_amount_without_tax
|
|
* description: The calculated price's amount without taxes applied.
|
|
* is_original_price_price_list:
|
|
* type: boolean
|
|
* title: is_original_price_price_list
|
|
* description: Whether the original price belongs to a price list.
|
|
* is_original_price_tax_inclusive:
|
|
* type: boolean
|
|
* title: is_original_price_tax_inclusive
|
|
* description: Whether the original price is tax inclusive.
|
|
* original_amount:
|
|
* type: number
|
|
* title: original_amount
|
|
* description: The amount of the original price, or `null` if there isn't an original price. This amount is useful to compare with the `calculated_amount`, such as to check for discounted value.
|
|
* currency_code:
|
|
* type: string
|
|
* title: currency_code
|
|
* description: The calculated price's currency code.
|
|
* example: usd
|
|
* calculated_price:
|
|
* type: object
|
|
* description: The calculated price's details.
|
|
* original_price:
|
|
* type: object
|
|
* description: The original price's details.
|
|
* original_amount_with_tax:
|
|
* type: number
|
|
* title: original_amount_with_tax
|
|
* description: The amount of the original price with taxes applied.
|
|
* original_amount_without_tax:
|
|
* type: number
|
|
* title: original_amount_without_tax
|
|
* description: The amount of the original price without taxes.
|
|
*
|
|
*/
|
|
|