# CustomerObject

An object representing a customer with various properties, including addresses.

## Properties

| Name | Type | Required | Description | Examples |
|------------|:-------------:|:-------------:|-------------|:-------------:|
| **id** |string |  | The unique identifier for the customer. | | |
| **phoneNumber** |string |  | The customer\&#39;s phone number. | | |
| **givenNames** |string |  | The customer\&#39;s given names or first names. | | |
| **surname** |string |  | The customer\&#39;s surname or last name. | | |
| **email** |string |  | The customer\&#39;s email address. | | |
| **mobileNumber** |string |  | The customer\&#39;s mobile phone number. | | |
| **customerId** |string |  | An additional identifier for the customer. | | |
| **addresses** |[AddressObject[]](AddressObject.md) |  | An array of addresses associated with the customer. | | |



[[Back to README]](../../README.md)