/* 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 SetType = { normal: 'normal', sixRepTest: 'sixRepTest', tenRepTest: 'tenRepTest' } as const; export type SetType = | 'normal' | 'sixRepTest' | 'tenRepTest' ; export function instanceOfSetType(value: unknown): boolean { return (Object.values(SetType) as unknown[]).includes(value); } export function SetTypeFromJSON(json: unknown): SetType { return SetTypeFromJSONTyped(json, false); } export function SetTypeFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): SetType { return json as SetType; } export function SetTypeToJSON(value?: SetType | null): SetType | null | undefined { return value; }