UNPKG

@fnt-eve/esi-client-typescript

Version:

[![npm version](https://img.shields.io/npm/v/@fnt-eve/esi-client-typescript)](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)

51 lines 1.81 kB
/** * EVE Swagger Interface * An OpenAPI for EVE Online * * The version of the OpenAPI document: 1.33 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * 200 ok object * @export * @interface GetCharactersCharacterIdOnlineOk */ export interface GetCharactersCharacterIdOnlineOk { /** * Timestamp of the last login * @type {Date} * @memberof GetCharactersCharacterIdOnlineOk */ lastLogin?: Date; /** * Timestamp of the last logout * @type {Date} * @memberof GetCharactersCharacterIdOnlineOk */ lastLogout?: Date; /** * Total number of times the character has logged in * @type {number} * @memberof GetCharactersCharacterIdOnlineOk */ logins?: number; /** * If the character is online * @type {boolean} * @memberof GetCharactersCharacterIdOnlineOk */ online: boolean; } /** * Check if a given object implements the GetCharactersCharacterIdOnlineOk interface. */ export declare function instanceOfGetCharactersCharacterIdOnlineOk(value: object): value is GetCharactersCharacterIdOnlineOk; export declare function GetCharactersCharacterIdOnlineOkFromJSON(json: any): GetCharactersCharacterIdOnlineOk; export declare function GetCharactersCharacterIdOnlineOkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdOnlineOk; export declare function GetCharactersCharacterIdOnlineOkToJSON(json: any): GetCharactersCharacterIdOnlineOk; export declare function GetCharactersCharacterIdOnlineOkToJSONTyped(value?: GetCharactersCharacterIdOnlineOk | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCharactersCharacterIdOnlineOk.d.ts.map