/* tslint:disable */ /* eslint-disable */ /** * configuration/centres.yaml * 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 { AddressDetails } from './address-details'; // May contain unused imports in some cases // @ts-ignore import type { CustomFieldValueSetConfiguration } from './custom-field-value-set-configuration'; /** * Model representation of the configuration for a centre. */ export interface CentreConfiguration { address?: AddressDetails; /** * The ID of the branch this centre was assigned to. */ assignedBranchId?: string; /** * Custom fields value sets of the centre. */ customFieldValueSets?: Array; /** * User-defined ID, globally unique. */ id: string; /** * Enumeration for calendar days of week. */ meetingDay?: CentreConfigurationMeetingDayEnum; /** * Name of the centre. */ name: string; /** * Notes of the centre. */ notes?: string; /** * Model representation of the state of a centre. */ state: CentreConfigurationStateEnum; } export const CentreConfigurationMeetingDayEnum = { Monday: 'MONDAY', Tuesday: 'TUESDAY', Wednesday: 'WEDNESDAY', Thursday: 'THURSDAY', Friday: 'FRIDAY', Saturday: 'SATURDAY', Sunday: 'SUNDAY', } as const; export type CentreConfigurationMeetingDayEnum = (typeof CentreConfigurationMeetingDayEnum)[keyof typeof CentreConfigurationMeetingDayEnum]; export const CentreConfigurationStateEnum = { Active: 'ACTIVE', Inactive: 'INACTIVE', } as const; export type CentreConfigurationStateEnum = (typeof CentreConfigurationStateEnum)[keyof typeof CentreConfigurationStateEnum];