Files
medusa-store/docs/api/admin/components/schemas/PricedShippingOption.yaml
2023-04-04 21:02:44 +03:00

28 lines
713 B
YAML

title: Priced Shipping Option
type: object
allOf:
- $ref: ./ShippingOption.yaml
- type: object
properties:
price_incl_tax:
type: number
description: Price including taxes
tax_rates:
type: array
description: An array of applied tax rates
items:
type: object
properties:
rate:
type: number
description: The tax rate value
name:
type: string
description: The name of the tax rate
code:
type: string
description: The code of the tax rate
tax_amount:
type: number
description: The taxes applied.