# CustomerResponse

Customer response object containing all customer information

## Example Usage

```typescript
import { CustomerResponse } from "@flexprice/sdk/sdk/models";

let value: CustomerResponse = {};
```

## Fields

| Field                                                                                                                                | Type                                                                                                                                 | Required                                                                                                                             | Description                                                                                                                          |
| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ |
| `addressCity`                                                                                                                        | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | AddressCity is the city of the customer's address                                                                                    |
| `addressCountry`                                                                                                                     | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | AddressCountry is the country of the customer's address (ISO 3166-1 alpha-2)                                                         |
| `addressLine1`                                                                                                                       | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | AddressLine1 is the first line of the customer's address                                                                             |
| `addressLine2`                                                                                                                       | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | AddressLine2 is the second line of the customer's address                                                                            |
| `addressPostalCode`                                                                                                                  | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | AddressPostalCode is the postal code of the customer's address                                                                       |
| `addressState`                                                                                                                       | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | AddressState is the state of the customer's address                                                                                  |
| `contact`                                                                                                                            | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | Contact is an optional contact number for the customer (e.g. phone)                                                                  |
| `createdAt`                                                                                                                          | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date)                                        | :heavy_minus_sign:                                                                                                                   | N/A                                                                                                                                  |
| `createdBy`                                                                                                                          | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | N/A                                                                                                                                  |
| `email`                                                                                                                              | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | Email is the email of the customer                                                                                                   |
| `environmentId`                                                                                                                      | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | EnvironmentID is the environment identifier for the customer                                                                         |
| `externalId`                                                                                                                         | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | ExternalID is the external identifier for the customer                                                                               |
| `id`                                                                                                                                 | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | ID is the unique identifier for the customer                                                                                         |
| `integrations`                                                                                                                       | [models.EntityIntegrationMappingResponse](../../sdk/models/entity-integration-mapping-response.md)[]                                 | :heavy_minus_sign:                                                                                                                   | N/A                                                                                                                                  |
| `metadata`                                                                                                                           | Record<string, *string*>                                                                                                             | :heavy_minus_sign:                                                                                                                   | Metadata                                                                                                                             |
| `name`                                                                                                                               | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | Name is the name of the customer                                                                                                     |
| `status`                                                                                                                             | [models.Status](../../sdk/models/status.md)                                                                                          | :heavy_minus_sign:                                                                                                                   | N/A                                                                                                                                  |
| `tenantId`                                                                                                                           | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | N/A                                                                                                                                  |
| `timezone`                                                                                                                           | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | Timezone is the customer's IANA timezone name (e.g. "Asia/Kolkata").<br/>Defaults to "UTC". Inherited by subscriptions at creation time. |
| `updatedAt`                                                                                                                          | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date)                                        | :heavy_minus_sign:                                                                                                                   | N/A                                                                                                                                  |
| `updatedBy`                                                                                                                          | *string*                                                                                                                             | :heavy_minus_sign:                                                                                                                   | N/A                                                                                                                                  |