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)

45 lines 2.01 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. */ /** * Summary of victory points gained by the given character for the enlisted faction * @export * @interface GetCharactersCharacterIdFwStatsVictoryPoints */ export interface GetCharactersCharacterIdFwStatsVictoryPoints { /** * Last week's victory points gained by the given character * @type {number} * @memberof GetCharactersCharacterIdFwStatsVictoryPoints */ lastWeek: number; /** * Total victory points gained since the given character enlisted * @type {number} * @memberof GetCharactersCharacterIdFwStatsVictoryPoints */ total: number; /** * Yesterday's victory points gained by the given character * @type {number} * @memberof GetCharactersCharacterIdFwStatsVictoryPoints */ yesterday: number; } /** * Check if a given object implements the GetCharactersCharacterIdFwStatsVictoryPoints interface. */ export declare function instanceOfGetCharactersCharacterIdFwStatsVictoryPoints(value: object): value is GetCharactersCharacterIdFwStatsVictoryPoints; export declare function GetCharactersCharacterIdFwStatsVictoryPointsFromJSON(json: any): GetCharactersCharacterIdFwStatsVictoryPoints; export declare function GetCharactersCharacterIdFwStatsVictoryPointsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdFwStatsVictoryPoints; export declare function GetCharactersCharacterIdFwStatsVictoryPointsToJSON(json: any): GetCharactersCharacterIdFwStatsVictoryPoints; export declare function GetCharactersCharacterIdFwStatsVictoryPointsToJSONTyped(value?: GetCharactersCharacterIdFwStatsVictoryPoints | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCharactersCharacterIdFwStatsVictoryPoints.d.ts.map