/* 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 CardioMachineParseCode = { ms6: 'ms6', ms6e: 'ms6e' } as const; export type CardioMachineParseCode = | 'ms6' | 'ms6e' ; export function instanceOfCardioMachineParseCode(value: unknown): boolean { return (Object.values(CardioMachineParseCode) as unknown[]).includes(value); } export function CardioMachineParseCodeFromJSON(json: unknown): CardioMachineParseCode { return CardioMachineParseCodeFromJSONTyped(json, false); } export function CardioMachineParseCodeFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): CardioMachineParseCode { return json as CardioMachineParseCode; } export function CardioMachineParseCodeToJSON(value?: CardioMachineParseCode | null): CardioMachineParseCode | null | undefined { return value; }