/* 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 StrengthExerciseVariantType = { normal: 'normal', singleArm: 'singleArm', singleLeg: 'singleLeg', singleArmSingleLeg: 'singleArmSingleLeg', doubleArmSingleLeg: 'doubleArmSingleLeg', alternate: 'alternate' } as const; export type StrengthExerciseVariantType = | 'normal' | 'singleArm' | 'singleLeg' | 'singleArmSingleLeg' | 'doubleArmSingleLeg' | 'alternate' ; export function instanceOfStrengthExerciseVariantType(value: unknown): boolean { return (Object.values(StrengthExerciseVariantType) as unknown[]).includes(value); } export function StrengthExerciseVariantTypeFromJSON(json: unknown): StrengthExerciseVariantType { return StrengthExerciseVariantTypeFromJSONTyped(json, false); } export function StrengthExerciseVariantTypeFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): StrengthExerciseVariantType { return json as StrengthExerciseVariantType; } export function StrengthExerciseVariantTypeToJSON(value?: StrengthExerciseVariantType | null): StrengthExerciseVariantType | null | undefined { return value; }