/* 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 StrengthExerciseMovement = { unilateral: 'unilateral', bilateral: 'bilateral' } as const; export type StrengthExerciseMovement = | 'unilateral' | 'bilateral' ; export function instanceOfStrengthExerciseMovement(value: unknown): boolean { return (Object.values(StrengthExerciseMovement) as unknown[]).includes(value); } export function StrengthExerciseMovementFromJSON(json: unknown): StrengthExerciseMovement { return StrengthExerciseMovementFromJSONTyped(json, false); } export function StrengthExerciseMovementFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): StrengthExerciseMovement { return json as StrengthExerciseMovement; } export function StrengthExerciseMovementToJSON(value?: StrengthExerciseMovement | null): StrengthExerciseMovement | null | undefined { return value; }