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)

84 lines 2.57 kB
/** * EVE Swagger Interface * An OpenAPI for EVE Online * * The version of the OpenAPI document: 1.36 * * * 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 GetIncursions200Ok */ export interface GetIncursions200Ok { /** * The constellation id in which this incursion takes place * @type {number} * @memberof GetIncursions200Ok */ constellationId: number; /** * The attacking faction's id * @type {number} * @memberof GetIncursions200Ok */ factionId: number; /** * Whether the final encounter has boss or not * @type {boolean} * @memberof GetIncursions200Ok */ hasBoss: boolean; /** * A list of infested solar system ids that are a part of this incursion * @type {Array<number>} * @memberof GetIncursions200Ok */ infestedSolarSystems: Array<number>; /** * Influence of this incursion as a float from 0 to 1 * @type {number} * @memberof GetIncursions200Ok */ influence: number; /** * Staging solar system for this incursion * @type {number} * @memberof GetIncursions200Ok */ stagingSolarSystemId: number; /** * The state of this incursion * @type {string} * @memberof GetIncursions200Ok */ state: GetIncursions200OkStateEnum; /** * The type of this incursion * @type {string} * @memberof GetIncursions200Ok */ type: string; } /** * @export */ export declare const GetIncursions200OkStateEnum: { readonly Withdrawing: "withdrawing"; readonly Mobilizing: "mobilizing"; readonly Established: "established"; }; export type GetIncursions200OkStateEnum = typeof GetIncursions200OkStateEnum[keyof typeof GetIncursions200OkStateEnum]; /** * Check if a given object implements the GetIncursions200Ok interface. */ export declare function instanceOfGetIncursions200Ok(value: object): value is GetIncursions200Ok; export declare function GetIncursions200OkFromJSON(json: any): GetIncursions200Ok; export declare function GetIncursions200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetIncursions200Ok; export declare function GetIncursions200OkToJSON(json: any): GetIncursions200Ok; export declare function GetIncursions200OkToJSONTyped(value?: GetIncursions200Ok | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetIncursions200Ok.d.ts.map