/**
 * 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 { GetCharactersCharacterIdFwStatsKills } from './GetCharactersCharacterIdFwStatsKills';
import type { GetCharactersCharacterIdFwStatsVictoryPoints } from './GetCharactersCharacterIdFwStatsVictoryPoints';
/**
 * 200 ok object
 * @export
 * @interface GetCharactersCharacterIdFwStatsOk
 */
export interface GetCharactersCharacterIdFwStatsOk {
    /**
     * The given character's current faction rank
     * @type {number}
     * @memberof GetCharactersCharacterIdFwStatsOk
     */
    currentRank?: number;
    /**
     * The enlistment date of the given character into faction warfare. Will not be included if character is not enlisted in faction warfare
     * @type {Date}
     * @memberof GetCharactersCharacterIdFwStatsOk
     */
    enlistedOn?: Date;
    /**
     * The faction the given character is enlisted to fight for. Will not be included if character is not enlisted in faction warfare
     * @type {number}
     * @memberof GetCharactersCharacterIdFwStatsOk
     */
    factionId?: number;
    /**
     * The given character's highest faction rank achieved
     * @type {number}
     * @memberof GetCharactersCharacterIdFwStatsOk
     */
    highestRank?: number;
    /**
     *
     * @type {GetCharactersCharacterIdFwStatsKills}
     * @memberof GetCharactersCharacterIdFwStatsOk
     */
    kills: GetCharactersCharacterIdFwStatsKills;
    /**
     *
     * @type {GetCharactersCharacterIdFwStatsVictoryPoints}
     * @memberof GetCharactersCharacterIdFwStatsOk
     */
    victoryPoints: GetCharactersCharacterIdFwStatsVictoryPoints;
}
/**
 * Check if a given object implements the GetCharactersCharacterIdFwStatsOk interface.
 */
export declare function instanceOfGetCharactersCharacterIdFwStatsOk(value: object): value is GetCharactersCharacterIdFwStatsOk;
export declare function GetCharactersCharacterIdFwStatsOkFromJSON(json: any): GetCharactersCharacterIdFwStatsOk;
export declare function GetCharactersCharacterIdFwStatsOkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdFwStatsOk;
export declare function GetCharactersCharacterIdFwStatsOkToJSON(json: any): GetCharactersCharacterIdFwStatsOk;
export declare function GetCharactersCharacterIdFwStatsOkToJSONTyped(value?: GetCharactersCharacterIdFwStatsOk | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCharactersCharacterIdFwStatsOk.d.ts.map