/**
 * 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 GetCharactersCharacterIdSkillqueue200Ok
 */
export interface GetCharactersCharacterIdSkillqueue200Ok {
    /**
     * Date on which training of the skill will complete. Omitted if the skill queue is paused.
     * @type {Date}
     * @memberof GetCharactersCharacterIdSkillqueue200Ok
     */
    finishDate?: Date;
    /**
     * finished_level integer
     * @type {number}
     * @memberof GetCharactersCharacterIdSkillqueue200Ok
     */
    finishedLevel: number;
    /**
     * level_end_sp integer
     * @type {number}
     * @memberof GetCharactersCharacterIdSkillqueue200Ok
     */
    levelEndSp?: number;
    /**
     * Amount of SP that was in the skill when it started training it's current level. Used to calculate % of current level complete.
     * @type {number}
     * @memberof GetCharactersCharacterIdSkillqueue200Ok
     */
    levelStartSp?: number;
    /**
     * queue_position integer
     * @type {number}
     * @memberof GetCharactersCharacterIdSkillqueue200Ok
     */
    queuePosition: number;
    /**
     * skill_id integer
     * @type {number}
     * @memberof GetCharactersCharacterIdSkillqueue200Ok
     */
    skillId: number;
    /**
     * start_date string
     * @type {Date}
     * @memberof GetCharactersCharacterIdSkillqueue200Ok
     */
    startDate?: Date;
    /**
     * training_start_sp integer
     * @type {number}
     * @memberof GetCharactersCharacterIdSkillqueue200Ok
     */
    trainingStartSp?: number;
}
/**
 * Check if a given object implements the GetCharactersCharacterIdSkillqueue200Ok interface.
 */
export declare function instanceOfGetCharactersCharacterIdSkillqueue200Ok(value: object): value is GetCharactersCharacterIdSkillqueue200Ok;
export declare function GetCharactersCharacterIdSkillqueue200OkFromJSON(json: any): GetCharactersCharacterIdSkillqueue200Ok;
export declare function GetCharactersCharacterIdSkillqueue200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdSkillqueue200Ok;
export declare function GetCharactersCharacterIdSkillqueue200OkToJSON(json: any): GetCharactersCharacterIdSkillqueue200Ok;
export declare function GetCharactersCharacterIdSkillqueue200OkToJSONTyped(value?: GetCharactersCharacterIdSkillqueue200Ok | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCharactersCharacterIdSkillqueue200Ok.d.ts.map