eve-esi-types
Version:
Extracted the main type of ESI. use for ESI request response types (version 2 only)
32 lines (29 loc) • 548 B
TypeScript
// Generated by scripts/lib/code-synthesizer.mjs
// - - - - - - - - - - - - - - - - - - - -
// @method {get}
// - - - - - - - - - - - - - - - - - - - -
/*!
* ESI endpoint: get:/status/
*/
/**
* 200 ok object
*/
interface GetStatusOk {
/**
* Current online player count
*/
players: number;
/**
* Running version as string
*/
server_version: string;
/**
* Server start timestamp
*/
start_time: string;
/**
* If the server is in VIP mode
*/
vip?: boolean;
[k: string]: unknown | undefined;
}