/** * 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 * @interface Exercise */ export interface Exercise { /** * * @type {number} * @memberof Exercise */ id: number; /** * * @type {string} * @memberof Exercise */ name: string; /** * * @type {string} * @memberof Exercise */ bodyArea: string; /** * * @type {string} * @memberof Exercise */ movement: string; } /** * Check if a given object implements the Exercise interface. */ export declare function instanceOfExercise(value: object): value is Exercise; export declare function ExerciseFromJSON(json: any): Exercise; export declare function ExerciseFromJSONTyped(json: any, ignoreDiscriminator: boolean): Exercise; export declare function ExerciseToJSON(value?: Exercise | null): any;