/* tslint:disable */ /* eslint-disable */ /** * metrics-sdk-admin * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 5.4.9 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /* tslint:disable */ /* eslint-disable */ /** * metrics-sdk-admin * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 5.4.9 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export const FacilityLicenseType = { normal: 'normal', demo: 'demo', test: 'test' } as const; export type FacilityLicenseType = | 'normal' | 'demo' | 'test' ; export function instanceOfFacilityLicenseType(value: unknown): boolean { return (Object.values(FacilityLicenseType) as unknown[]).includes(value); } export function FacilityLicenseTypeFromJSON(json: unknown): FacilityLicenseType { return FacilityLicenseTypeFromJSONTyped(json, false); } export function FacilityLicenseTypeFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): FacilityLicenseType { return json as FacilityLicenseType; } export function FacilityLicenseTypeToJSON(value?: FacilityLicenseType | null): FacilityLicenseType | null | undefined { return value; }