63 lines
1.6 KiB
TypeScript
63 lines
1.6 KiB
TypeScript
/**
|
|
* @schema UpdateAddress
|
|
* type: object
|
|
* description: The cart's shipping address.
|
|
* x-schemaName: UpdateAddress
|
|
* required:
|
|
* - id
|
|
* properties:
|
|
* id:
|
|
* type: string
|
|
* title: id
|
|
* description: The shipping address's ID.
|
|
* customer_id:
|
|
* type: string
|
|
* title: customer_id
|
|
* description: The shipping address's customer id.
|
|
* company:
|
|
* type: string
|
|
* title: company
|
|
* description: The shipping address's company.
|
|
* first_name:
|
|
* type: string
|
|
* title: first_name
|
|
* description: The shipping address's first name.
|
|
* last_name:
|
|
* type: string
|
|
* title: last_name
|
|
* description: The shipping address's last name.
|
|
* address_1:
|
|
* type: string
|
|
* title: address_1
|
|
* description: The shipping address's address 1.
|
|
* address_2:
|
|
* type: string
|
|
* title: address_2
|
|
* description: The shipping address's address 2.
|
|
* city:
|
|
* type: string
|
|
* title: city
|
|
* description: The shipping address's city.
|
|
* country_code:
|
|
* type: string
|
|
* title: country_code
|
|
* description: The shipping address's country code.
|
|
* province:
|
|
* type: string
|
|
* title: province
|
|
* description: The shipping address's province.
|
|
* postal_code:
|
|
* type: string
|
|
* title: postal_code
|
|
* description: The shipping address's postal code.
|
|
* phone:
|
|
* type: string
|
|
* title: phone
|
|
* description: The shipping address's phone.
|
|
* metadata:
|
|
* type: object
|
|
* description: The shipping address's metadata.
|
|
*
|
|
*/
|
|
|