# Branch

Represents a branch.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**addresses** | [**Array&lt;Address&gt;**](Address.md) | The list of branch addresses. | [optional] [default to undefined]
**branchHolidays** | [**Array&lt;Holiday&gt;**](Holiday.md) | The list of branch holidays. | [optional] [default to undefined]
**creationDate** | **string** | The creation date of the branch. | [optional] [default to undefined]
**emailAddress** | **string** | The branch email address. | [optional] [default to undefined]
**encodedKey** | **string** | The encoded key of the entity, generated, globally unique | [optional] [readonly] [default to undefined]
**id** | **string** | The branch ID, which must be unique. | [default to undefined]
**lastModifiedDate** | **string** | The last date when the branch was modified. | [optional] [default to undefined]
**name** | **string** | The branch name. | [default to undefined]
**notes** | **string** | The notes or description attached to this object. | [optional] [default to undefined]
**phoneNumber** | **string** | The branch phone number. | [optional] [default to undefined]
**state** | **string** | The branch state. | [optional] [default to undefined]

## Example

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

const instance: Branch = {
    addresses,
    branchHolidays,
    creationDate,
    emailAddress,
    encodedKey,
    id,
    lastModifiedDate,
    name,
    notes,
    phoneNumber,
    state,
};
```

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