/* eslint-disable */ /* tslint:disable */ // @ts-nocheck /* * --------------------------------------------------------------- * ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ## * ## ## * ## AUTHOR: acacode ## * ## SOURCE: https://github.com/acacode/swagger-typescript-api ## * --------------------------------------------------------------- */ import type { ErrorResponse } from './common' export interface KioskStarterGetGroupInfoRespVO { name?: string; } export interface KioskStarterRegisterNodeReqVO { fingerprint?: string; replace?: boolean; secret?: string; station?: number; } export interface KioskStarterRegisterNodeRespVO { registered?: boolean; station_id?: number; station_name?: string; } export interface KioskStarterValidateReqVO { fingerprint?: string; secret?: string; } export interface KioskStarterValidateRespVO { freeStations?: StationInfo[]; validated?: boolean; } export interface StationInfo { Current?: boolean; ID?: number; Name?: string; }