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)

48 lines 2.43 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. */ import type { GetFwLeaderboardsActiveTotalActiveTotal1 } from './GetFwLeaderboardsActiveTotalActiveTotal1'; import type { GetFwLeaderboardsLastWeekLastWeek1 } from './GetFwLeaderboardsLastWeekLastWeek1'; import type { GetFwLeaderboardsYesterdayYesterday1 } from './GetFwLeaderboardsYesterdayYesterday1'; /** * Top 4 rankings of factions by victory points from yesterday, last week and in total * @export * @interface GetFwLeaderboardsVictoryPoints */ export interface GetFwLeaderboardsVictoryPoints { /** * Top 4 ranking of factions active in faction warfare by total victory points. A faction is considered "active" if they have participated in faction warfare in the past 14 days * @type {Array<GetFwLeaderboardsActiveTotalActiveTotal1>} * @memberof GetFwLeaderboardsVictoryPoints */ activeTotal: Array<GetFwLeaderboardsActiveTotalActiveTotal1>; /** * Top 4 ranking of factions by victory points in the past week * @type {Array<GetFwLeaderboardsLastWeekLastWeek1>} * @memberof GetFwLeaderboardsVictoryPoints */ lastWeek: Array<GetFwLeaderboardsLastWeekLastWeek1>; /** * Top 4 ranking of factions by victory points in the past day * @type {Array<GetFwLeaderboardsYesterdayYesterday1>} * @memberof GetFwLeaderboardsVictoryPoints */ yesterday: Array<GetFwLeaderboardsYesterdayYesterday1>; } /** * Check if a given object implements the GetFwLeaderboardsVictoryPoints interface. */ export declare function instanceOfGetFwLeaderboardsVictoryPoints(value: object): value is GetFwLeaderboardsVictoryPoints; export declare function GetFwLeaderboardsVictoryPointsFromJSON(json: any): GetFwLeaderboardsVictoryPoints; export declare function GetFwLeaderboardsVictoryPointsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetFwLeaderboardsVictoryPoints; export declare function GetFwLeaderboardsVictoryPointsToJSON(json: any): GetFwLeaderboardsVictoryPoints; export declare function GetFwLeaderboardsVictoryPointsToJSONTyped(value?: GetFwLeaderboardsVictoryPoints | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetFwLeaderboardsVictoryPoints.d.ts.map