The Address entity at YouCan.
| Attribute Name | Type | Description |
|---|---|---|
| id | string | Identifier (UUID) |
| first_name | string, null | First name on the address |
| last_name | string, null | Last name on the address |
| full_name | string, null | Full name (first + last) |
| first_line | string, null | Address line 1 (street, building, etc.) |
| second_line | string, null | Address line 2 (apartment, suite, etc.) |
| company | string, null | Company name |
| phone | string, null | Phone number |
| country_code | string, null | ISO country code (e.g. "MA") |
| country_name | string, null | Full country name |
| state | string, null | State or province |
| region | string, null | Region |
| city | string, null | City |
| zip_code | string, null | Postal / ZIP code |
| default | bool | Whether this is the default address |
| created_at | int | Creation date (unix timestamp) |
| updated_at | int | Last update date (unix timestamp) |