/* tslint:disable */ /* eslint-disable */ /** * centres * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { Address } from './address'; /** * 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. */ export interface Centre { /** * The addresses of this centre. */ addresses?: Array
; /** * The encoded key of the branch this centre is assigned to. */ assignedBranchKey?: string; /** * The date the centre was created. */ creationDate?: string; /** * The encoded key of the entity, generated, globally unique */ encodedKey?: string; /** * The ID of the centre, which must be unique, and can be generated and customized. */ id?: string; /** * The last time the centre was modified. */ lastModifiedDate?: 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. */ meetingDay?: string; /** * The name of the centre. */ name?: string; /** * The notes or description attached to this object. */ notes?: string; /** * The state of the centre. */ state?: CentreStateEnum; } export const CentreStateEnum = { Active: 'ACTIVE', Inactive: 'INACTIVE', } as const; export type CentreStateEnum = (typeof CentreStateEnum)[keyof typeof CentreStateEnum];