/**
 * 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.
 */
/**
 * 200 ok object
 * @export
 * @interface GetFwSystems200Ok
 */
export interface GetFwSystems200Ok {
    /**
     * contested string
     * @type {string}
     * @memberof GetFwSystems200Ok
     */
    contested: GetFwSystems200OkContestedEnum;
    /**
     * occupier_faction_id integer
     * @type {number}
     * @memberof GetFwSystems200Ok
     */
    occupierFactionId: number;
    /**
     * owner_faction_id integer
     * @type {number}
     * @memberof GetFwSystems200Ok
     */
    ownerFactionId: number;
    /**
     * solar_system_id integer
     * @type {number}
     * @memberof GetFwSystems200Ok
     */
    solarSystemId: number;
    /**
     * victory_points integer
     * @type {number}
     * @memberof GetFwSystems200Ok
     */
    victoryPoints: number;
    /**
     * victory_points_threshold integer
     * @type {number}
     * @memberof GetFwSystems200Ok
     */
    victoryPointsThreshold: number;
}
/**
 * @export
 */
export declare const GetFwSystems200OkContestedEnum: {
    readonly Captured: "captured";
    readonly Contested: "contested";
    readonly Uncontested: "uncontested";
    readonly Vulnerable: "vulnerable";
};
export type GetFwSystems200OkContestedEnum = typeof GetFwSystems200OkContestedEnum[keyof typeof GetFwSystems200OkContestedEnum];
/**
 * Check if a given object implements the GetFwSystems200Ok interface.
 */
export declare function instanceOfGetFwSystems200Ok(value: object): value is GetFwSystems200Ok;
export declare function GetFwSystems200OkFromJSON(json: any): GetFwSystems200Ok;
export declare function GetFwSystems200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetFwSystems200Ok;
export declare function GetFwSystems200OkToJSON(json: any): GetFwSystems200Ok;
export declare function GetFwSystems200OkToJSONTyped(value?: GetFwSystems200Ok | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetFwSystems200Ok.d.ts.map