/* 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 StretchExerciseVariantType = { normal: 'normal' } as const; export type StretchExerciseVariantType = | 'normal' ; export function instanceOfStretchExerciseVariantType(value: unknown): boolean { return (Object.values(StretchExerciseVariantType) as unknown[]).includes(value); } export function StretchExerciseVariantTypeFromJSON(json: unknown): StretchExerciseVariantType { return StretchExerciseVariantTypeFromJSONTyped(json, false); } export function StretchExerciseVariantTypeFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): StretchExerciseVariantType { return json as StretchExerciseVariantType; } export function StretchExerciseVariantTypeToJSON(value?: StretchExerciseVariantType | null): StretchExerciseVariantType | null | undefined { return value; }