/* 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 StrengthMachineLine = { a250: 'a250', a300: 'a300', a350: 'a350', infinity: 'infinity', powerRack: 'powerRack', a400: 'a400', a500: 'a500' } as const; export type StrengthMachineLine = | 'a250' | 'a300' | 'a350' | 'infinity' | 'powerRack' | 'a400' | 'a500' ; export function instanceOfStrengthMachineLine(value: unknown): boolean { return (Object.values(StrengthMachineLine) as unknown[]).includes(value); } export function StrengthMachineLineFromJSON(json: unknown): StrengthMachineLine { return StrengthMachineLineFromJSONTyped(json, false); } export function StrengthMachineLineFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): StrengthMachineLine { return json as StrengthMachineLine; } export function StrengthMachineLineToJSON(value?: StrengthMachineLine | null): StrengthMachineLine | null | undefined { return value; }