/** * 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. */ import type { TenRepTestSideResults } from './TenRepTestSideResults'; /** * * @export * @interface TenRepTestData */ export interface TenRepTestData { /** * * @type {number} * @memberof TenRepTestData */ oneRM: number; /** * * @type {string} * @memberof TenRepTestData */ machineSide: TenRepTestDataMachineSideEnum; /** * * @type {TenRepTestSideResults} * @memberof TenRepTestData */ left: TenRepTestSideResults; /** * * @type {TenRepTestSideResults} * @memberof TenRepTestData */ right: TenRepTestSideResults; } /** * @export */ export declare const TenRepTestDataMachineSideEnum: { readonly Left: "left"; readonly Right: "right"; readonly Both: "both"; }; export type TenRepTestDataMachineSideEnum = 'left' | 'right' | 'both'; /** * Check if a given object implements the TenRepTestData interface. */ export declare function instanceOfTenRepTestData(value: object): value is TenRepTestData; export declare function TenRepTestDataFromJSON(json: any): TenRepTestData; export declare function TenRepTestDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenRepTestData; export declare function TenRepTestDataToJSON(value?: TenRepTestData | null): any;