/* 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 StrengthMachineAppType = { performance: 'performance', elder: 'elder', medical: 'medical', commercial: 'commercial' } as const; export type StrengthMachineAppType = | 'performance' | 'elder' | 'medical' | 'commercial' ; export function instanceOfStrengthMachineAppType(value: unknown): boolean { return (Object.values(StrengthMachineAppType) as unknown[]).includes(value); } export function StrengthMachineAppTypeFromJSON(json: unknown): StrengthMachineAppType { return StrengthMachineAppTypeFromJSONTyped(json, false); } export function StrengthMachineAppTypeFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): StrengthMachineAppType { return json as StrengthMachineAppType; } export function StrengthMachineAppTypeToJSON(value?: StrengthMachineAppType | null): StrengthMachineAppType | null | undefined { return value; }