# AddressDetails

Represents an address.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**city** | **string** | The city for this address. | [optional] [default to undefined]
**country** | **string** | The country that is part of the address. | [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]
**postcode** | **string** | The post code that is part of the address. | [optional] [default to undefined]
**region** | **string** | The region that is part of the address. | [optional] [default to undefined]

## Example

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

const instance: AddressDetails = {
    city,
    country,
    line1,
    line2,
    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)
