Files
medusa-store/www/utils/generated/oas-output/schemas/BaseRegion.ts
Shahed Nasser 5fb9c1f82e chore(oas): general fixes to OAS (#9413)
General fixes to OAS
2024-10-02 15:21:40 +00:00

53 lines
1.2 KiB
TypeScript

/**
* @schema BaseRegion
* type: object
* description: The region's details.
* x-schemaName: BaseRegion
* required:
* - id
* - name
* - currency_code
* properties:
* id:
* type: string
* title: id
* description: The region's ID.
* name:
* type: string
* title: name
* description: The region's name.
* currency_code:
* type: string
* title: currency_code
* description: The region's currency code.
* automatic_taxes:
* type: boolean
* title: automatic_taxes
* description: The region's automatic taxes.
* countries:
* type: array
* description: The region's countries.
* items:
* $ref: "#/components/schemas/BaseRegionCountry"
* payment_providers:
* type: array
* description: The region's payment providers.
* items:
* $ref: "#/components/schemas/AdminPaymentProvider"
* metadata:
* type: object
* description: The region's metadata.
* created_at:
* type: string
* format: date-time
* title: created_at
* description: The region's created at.
* updated_at:
* type: string
* format: date-time
* title: updated_at
* description: The region's updated at.
*
*/