/* 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 StrengthTestType = { power6r: 'power6r', a4206r: 'a4206r', a42010r: 'a42010r', a50010r: 'a50010r' } as const; export type StrengthTestType = | 'power6r' | 'a4206r' | 'a42010r' | 'a50010r' ; export function instanceOfStrengthTestType(value: unknown): boolean { return (Object.values(StrengthTestType) as unknown[]).includes(value); } export function StrengthTestTypeFromJSON(json: unknown): StrengthTestType { return StrengthTestTypeFromJSONTyped(json, false); } export function StrengthTestTypeFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): StrengthTestType { return json as StrengthTestType; } export function StrengthTestTypeToJSON(value?: StrengthTestType | null): StrengthTestType | null | undefined { return value; }