Address Object
Description
Represents a physical address.
Declaration
type Address {
_id: ID
description: String
firstName: String
lastName: String
addressLine1: String
addressLine2: String
streetNumber: String
city: String
state: String
stateCode: String
postCode: String
country: String
alpha2: String
type: String
}
Fields
| Name | Type | Description |
|---|---|---|
_id | ID | Internal database identifier. |
description | String | Optional description or label for the address. |
firstName | String | First name of the address recipient. |
lastName | String | Last name of the address recipient. |
addressLine1 | String | Primary street address line. |
addressLine2 | String | Secondary street address line. |
streetNumber | String | Street number component. |
city | String | City or locality name. |
state | String | State or province name. |
stateCode | String | State or province code abbreviation. |
postCode | String | Postal or ZIP code. |
country | String | Full country name. |
alpha2 | String | Two-letter ISO 3166-1 alpha-2 country code. |
type | String | Type of address (e.g., "billing", "shipping"). |