/* 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 StrengthExercisePlane = { sagittal: 'sagittal', frontal: 'frontal', transverse: 'transverse' } as const; export type StrengthExercisePlane = | 'sagittal' | 'frontal' | 'transverse' ; export function instanceOfStrengthExercisePlane(value: unknown): boolean { return (Object.values(StrengthExercisePlane) as unknown[]).includes(value); } export function StrengthExercisePlaneFromJSON(json: unknown): StrengthExercisePlane { return StrengthExercisePlaneFromJSONTyped(json, false); } export function StrengthExercisePlaneFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): StrengthExercisePlane { return json as StrengthExercisePlane; } export function StrengthExercisePlaneToJSON(value?: StrengthExercisePlane | null): StrengthExercisePlane | null | undefined { return value; }