# BranchConfiguration

Model representation of the configuration for a branch.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**address** | [**AddressDetails**](AddressDetails.md) |  | [optional] [default to undefined]
**customFieldValueSets** | [**Array&lt;CustomFieldValueSetConfiguration&gt;**](CustomFieldValueSetConfiguration.md) | Custom fields value sets of the branch. Ordered by the set id. | [optional] [default to undefined]
**emailAddress** | **string** | Branch email address. | [optional] [default to undefined]
**holidays** | [**Array&lt;HolidayDetails&gt;**](HolidayDetails.md) | Holidays of the branch. The yaml file dictates the ordering. | [optional] [default to undefined]
**id** | **string** | User-defined ID, globally unique. Branches are ordered by id in the yaml file. | [default to undefined]
**name** | **string** | Name of the branch. | [default to undefined]
**notes** | **string** | Notes for the branch. | [optional] [default to undefined]
**phoneNumber** | **string** | Branch phone number, as a string. | [optional] [default to undefined]
**state** | **string** | Model representation of the state of a branch. | [default to undefined]

## Example

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

const instance: BranchConfiguration = {
    address,
    customFieldValueSets,
    emailAddress,
    holidays,
    id,
    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)
