/* 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 SessionPlanSetType = { cardio: 'cardio', strength: 'strength', stretch: 'stretch', activity: 'activity' } as const; export type SessionPlanSetType = | 'cardio' | 'strength' | 'stretch' | 'activity' ; export function instanceOfSessionPlanSetType(value: unknown): boolean { return (Object.values(SessionPlanSetType) as unknown[]).includes(value); } export function SessionPlanSetTypeFromJSON(json: unknown): SessionPlanSetType { return SessionPlanSetTypeFromJSONTyped(json, false); } export function SessionPlanSetTypeFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): SessionPlanSetType { return json as SessionPlanSetType; } export function SessionPlanSetTypeToJSON(value?: SessionPlanSetType | null): SessionPlanSetType | null | undefined { return value; }