/* tslint:disable */ /* eslint-disable */ /** * configuration/organization * 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'; /** * Response representation of the organization configuration details */ export interface Organization { address?: AddressDetails; /** * Response representation of the decimal separator */ decimalSeparator: OrganizationDecimalSeparatorEnum; /** * The email address of the organization */ emailAddress?: string; /** * The name of the organization */ institutionName: string; /** * The format used to represent the date */ localDateFormat: string; /** * The format used to represent the time and date */ localDateTimeFormat: string; /** * The phone number of the organization */ phoneNumber?: string; } export const OrganizationDecimalSeparatorEnum = { Comma: 'COMMA', Point: 'POINT', } as const; export type OrganizationDecimalSeparatorEnum = (typeof OrganizationDecimalSeparatorEnum)[keyof typeof OrganizationDecimalSeparatorEnum];