
# Address Data

## Structure

`AddressData`

## Fields

| Name | Type | Tags | Description | Getter | Setter |
|  --- | --- | --- | --- | --- | --- |
| `addressLine` | `?string` | Optional | - | getAddressLine(): ?string | setAddressLine(?string addressLine): void |
| `addressLine2` | `?string` | Optional | - | getAddressLine2(): ?string | setAddressLine2(?string addressLine2): void |
| `city` | `?string` | Optional | - | getCity(): ?string | setCity(?string city): void |
| `country` | `?string` | Optional | - | getCountry(): ?string | setCountry(?string country): void |
| `state` | `?string` | Optional | - | getState(): ?string | setState(?string state): void |
| `zip` | `?string` | Optional | - | getZip(): ?string | setZip(?string zip): void |

## Example (as JSON)

```json
{
  "AddressLine": "AddressLine8",
  "AddressLine2": "AddressLine24",
  "City": "City2",
  "Country": "Country8",
  "State": "State4"
}
```

