CheckoutOrOrderBuyer Object
Description
Buyer information shared between checkout and order contexts.
Declaration
type CheckoutOrOrderBuyer {
_id: ID
firstName: String
lastName: String
email: String
name: String
path: String
telephone: String
organisation: String
taxNumber: String
addresses: [Address!]
}
Fields
| Name | Type | Description |
|---|---|---|
_id | ID | Internal database identifier for the buyer. |
firstName | String | First name of the buyer. |
lastName | String | Last name of the buyer. |
email | String | Email address of the buyer. |
name | String | Full name of the buyer (first name and last name combined). |
path | String | URL path to the buyer's profile page. |
telephone | String | Telephone number of the buyer. |
organisation | String | Organization or company name of the buyer. |
taxNumber | String | Tax identification number of the buyer. |
addresses | [Address!] | Addresses associated with the buyer. |