# Address

Represents an address.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**city** | **string** | The city for the address. | [optional] [default to undefined]
**country** | **string** | The country. | [optional] [default to undefined]
**encodedKey** | **string** | The address encoded key, which is unique and generated. | [optional] [readonly] [default to undefined]
**indexInList** | **number** | The index of this address in the list of addresses. | [optional] [default to undefined]
**latitude** | **number** | The GPS latitude of this address in signed degrees format (DDD.dddd) with 6 decimal positions, ranging from -90 to +90. | [optional] [default to undefined]
**line1** | **string** | The first line of the address. | [optional] [default to undefined]
**line2** | **string** | The second line of the address. | [optional] [default to undefined]
**longitude** | **number** | The GPS longitude of this address in signed degrees format (DDD.dddd) with 6 decimal positions, ranging from -180 to +180. | [optional] [default to undefined]
**parentKey** | **string** | The address parent key indicating the object owning this address. For example: client, centre, or branch. | [optional] [readonly] [default to undefined]
**postcode** | **string** | The post code. | [optional] [default to undefined]
**region** | **string** | The region for the address. | [optional] [default to undefined]

## Example

```typescript
import { Address } from './api';

const instance: Address = {
    city,
    country,
    encodedKey,
    indexInList,
    latitude,
    line1,
    line2,
    longitude,
    parentKey,
    postcode,
    region,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
