/* 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 StrengthExerciseVariantAttachment = { bar: 'bar', rope: 'rope', singleHandles: 'singleHandles', doubleHandles: 'doubleHandles', ankleStrap: 'ankleStrap', thighStrap: 'thighStrap', belt: 'belt', dip: 'dip', pullUpBar: 'pullUpBar' } as const; export type StrengthExerciseVariantAttachment = | 'bar' | 'rope' | 'singleHandles' | 'doubleHandles' | 'ankleStrap' | 'thighStrap' | 'belt' | 'dip' | 'pullUpBar' ; export function instanceOfStrengthExerciseVariantAttachment(value: unknown): boolean { return (Object.values(StrengthExerciseVariantAttachment) as unknown[]).includes(value); } export function StrengthExerciseVariantAttachmentFromJSON(json: unknown): StrengthExerciseVariantAttachment { return StrengthExerciseVariantAttachmentFromJSONTyped(json, false); } export function StrengthExerciseVariantAttachmentFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): StrengthExerciseVariantAttachment { return json as StrengthExerciseVariantAttachment; } export function StrengthExerciseVariantAttachmentToJSON(value?: StrengthExerciseVariantAttachment | null): StrengthExerciseVariantAttachment | null | undefined { return value; }