
# Address Data Model

## Structure

`AddressDataModel`

## Fields

| Name | Type | Tags | Description | Getter | Setter |
|  --- | --- | --- | --- | --- | --- |
| `addressLine1` | `?string` | Optional | - | getAddressLine1(): ?string | setAddressLine1(?string addressLine1): 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
{
  "AddressLine1": "AddressLine18",
  "AddressLine2": "AddressLine22",
  "City": "City0",
  "Country": "Country6",
  "State": "State4"
}
```

