/* tslint:disable */ /* eslint-disable */ /** * setup/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 { Address } from './address'; /** * Response representation of the organization setup details */ export interface OrganizationSetup { address?: Address; /** * The creation date of the organization */ creationDate?: string; /** * The currency of the organization, must be the same as the existing one */ currency?: string; /** * The format used to represent the date */ dateFormat: string; /** * The format used to represent the time and date */ dateTimeFormat: string; /** * Response representation of the decimal separator */ decimalSeparator: OrganizationSetupDecimalSeparatorEnum; /** * The email address of the organization */ emailAddress?: string; /** * The name of the organization */ institutionName: string; /** * The last modified date of the organization */ lastModifiedDate?: string; /** * The phone number of the organization */ phoneNumber?: string; /** * The timezone id, must be the same as the existing one */ timeZoneID?: string; } export const OrganizationSetupDecimalSeparatorEnum = { Comma: 'COMMA', Point: 'POINT', } as const; export type OrganizationSetupDecimalSeparatorEnum = (typeof OrganizationSetupDecimalSeparatorEnum)[keyof typeof OrganizationSetupDecimalSeparatorEnum];