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.36 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The aggressor corporation or alliance that declared this war, only contains either corporation_id or alliance_id * @export * @interface GetWarsWarIdAggressor */ export interface GetWarsWarIdAggressor { /** * Alliance ID if and only if the aggressor is an alliance * @type {number} * @memberof GetWarsWarIdAggressor */ allianceId?: number; /** * Corporation ID if and only if the aggressor is a corporation * @type {number} * @memberof GetWarsWarIdAggressor */ corporationId?: number; /** * ISK value of ships the aggressor has destroyed * @type {number} * @memberof GetWarsWarIdAggressor */ iskDestroyed: number; /** * The number of ships the aggressor has killed * @type {number} * @memberof GetWarsWarIdAggressor */ shipsKilled: number; } /** * Check if a given object implements the GetWarsWarIdAggressor interface. */ export declare function instanceOfGetWarsWarIdAggressor(value: object): value is GetWarsWarIdAggressor; export declare function GetWarsWarIdAggressorFromJSON(json: any): GetWarsWarIdAggressor; export declare function GetWarsWarIdAggressorFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetWarsWarIdAggressor; export declare function GetWarsWarIdAggressorToJSON(json: any): GetWarsWarIdAggressor; export declare function GetWarsWarIdAggressorToJSONTyped(value?: GetWarsWarIdAggressor | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetWarsWarIdAggressor.d.ts.map