Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
93 lines
2.3 KiB
TypeScript
93 lines
2.3 KiB
TypeScript
/**
|
|
* @schema AdminFulfillmentAddress
|
|
* type: object
|
|
* description: The fulfillment's delivery address.
|
|
* x-schemaName: AdminFulfillmentAddress
|
|
* required:
|
|
* - id
|
|
* - fulfillment_id
|
|
* - company
|
|
* - first_name
|
|
* - last_name
|
|
* - address_1
|
|
* - address_2
|
|
* - city
|
|
* - country_code
|
|
* - province
|
|
* - postal_code
|
|
* - phone
|
|
* - metadata
|
|
* - created_at
|
|
* - updated_at
|
|
* - deleted_at
|
|
* properties:
|
|
* id:
|
|
* type: string
|
|
* title: id
|
|
* description: The delivery address's ID.
|
|
* fulfillment_id:
|
|
* type: string
|
|
* title: fulfillment_id
|
|
* description: The delivery address's fulfillment id.
|
|
* company:
|
|
* type: string
|
|
* title: company
|
|
* description: The delivery address's company.
|
|
* first_name:
|
|
* type: string
|
|
* title: first_name
|
|
* description: The delivery address's first name.
|
|
* last_name:
|
|
* type: string
|
|
* title: last_name
|
|
* description: The delivery address's last name.
|
|
* address_1:
|
|
* type: string
|
|
* title: address_1
|
|
* description: The delivery address's address 1.
|
|
* address_2:
|
|
* type: string
|
|
* title: address_2
|
|
* description: The delivery address's address 2.
|
|
* city:
|
|
* type: string
|
|
* title: city
|
|
* description: The delivery address's city.
|
|
* country_code:
|
|
* type: string
|
|
* title: country_code
|
|
* description: The delivery address's country code.
|
|
* province:
|
|
* type: string
|
|
* title: province
|
|
* description: The delivery address's province.
|
|
* postal_code:
|
|
* type: string
|
|
* title: postal_code
|
|
* description: The delivery address's postal code.
|
|
* phone:
|
|
* type: string
|
|
* title: phone
|
|
* description: The delivery address's phone.
|
|
* metadata:
|
|
* type: object
|
|
* description: The delivery address's metadata.
|
|
* created_at:
|
|
* type: string
|
|
* format: date-time
|
|
* title: created_at
|
|
* description: The delivery address's created at.
|
|
* updated_at:
|
|
* type: string
|
|
* format: date-time
|
|
* title: updated_at
|
|
* description: The delivery address's updated at.
|
|
* deleted_at:
|
|
* type: string
|
|
* format: date-time
|
|
* title: deleted_at
|
|
* description: The delivery address's deleted at.
|
|
*
|
|
*/
|
|
|