# Centre

Represents a centre. A centre is a common meeting area that credit officers and the individual and group clients go to. Each centre is assigned to a branch (a branch can have multiple centres) and might have a specific meeting day and location.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**addresses** | [**Array&lt;Address&gt;**](Address.md) | The addresses of this centre. | [optional] [default to undefined]
**assignedBranchKey** | **string** | The encoded key of the branch this centre is assigned to. | [optional] [default to undefined]
**creationDate** | **string** | The date the centre was created. | [optional] [default to undefined]
**encodedKey** | **string** | The encoded key of the entity, generated, globally unique | [optional] [readonly] [default to undefined]
**id** | **string** | The ID of the centre, which must be unique, and can be generated and customized. | [optional] [default to undefined]
**lastModifiedDate** | **string** | The last time the centre was modified. | [optional] [default to undefined]
**meetingDay** | **string** | The day of the week when repayments are collected. This influences the repayments schedule, upon update all repayments are updated to this day of the week. | [optional] [default to undefined]
**name** | **string** | The name of the centre. | [optional] [default to undefined]
**notes** | **string** | The notes or description attached to this object. | [optional] [default to undefined]
**state** | **string** | The state of the centre. | [optional] [default to undefined]

## Example

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

const instance: Centre = {
    addresses,
    assignedBranchKey,
    creationDate,
    encodedKey,
    id,
    lastModifiedDate,
    meetingDay,
    name,
    notes,
    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)
