/* 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 StrengthExerciseMovementDEP = { isolation: 'isolation', compound: 'compound' } as const; export type StrengthExerciseMovementDEP = | 'isolation' | 'compound' ; export function instanceOfStrengthExerciseMovementDEP(value: unknown): boolean { return (Object.values(StrengthExerciseMovementDEP) as unknown[]).includes(value); } export function StrengthExerciseMovementDEPFromJSON(json: unknown): StrengthExerciseMovementDEP { return StrengthExerciseMovementDEPFromJSONTyped(json, false); } export function StrengthExerciseMovementDEPFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): StrengthExerciseMovementDEP { return json as StrengthExerciseMovementDEP; } export function StrengthExerciseMovementDEPToJSON(value?: StrengthExerciseMovementDEP | null): StrengthExerciseMovementDEP | null | undefined { return value; }