/** * 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. */ 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} * @memberof GetFwLeaderboardsVictoryPoints */ activeTotal: Array; /** * Top 4 ranking of factions by victory points in the past week * @type {Array} * @memberof GetFwLeaderboardsVictoryPoints */ lastWeek: Array; /** * Top 4 ranking of factions by victory points in the past day * @type {Array} * @memberof GetFwLeaderboardsVictoryPoints */ yesterday: Array; } /** * 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