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)

51 lines 1.86 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. */ /** * skill object * @export * @interface GetCharactersCharacterIdSkillsSkill */ export interface GetCharactersCharacterIdSkillsSkill { /** * active_skill_level integer * @type {number} * @memberof GetCharactersCharacterIdSkillsSkill */ activeSkillLevel: number; /** * skill_id integer * @type {number} * @memberof GetCharactersCharacterIdSkillsSkill */ skillId: number; /** * skillpoints_in_skill integer * @type {number} * @memberof GetCharactersCharacterIdSkillsSkill */ skillpointsInSkill: number; /** * trained_skill_level integer * @type {number} * @memberof GetCharactersCharacterIdSkillsSkill */ trainedSkillLevel: number; } /** * Check if a given object implements the GetCharactersCharacterIdSkillsSkill interface. */ export declare function instanceOfGetCharactersCharacterIdSkillsSkill(value: object): value is GetCharactersCharacterIdSkillsSkill; export declare function GetCharactersCharacterIdSkillsSkillFromJSON(json: any): GetCharactersCharacterIdSkillsSkill; export declare function GetCharactersCharacterIdSkillsSkillFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdSkillsSkill; export declare function GetCharactersCharacterIdSkillsSkillToJSON(json: any): GetCharactersCharacterIdSkillsSkill; export declare function GetCharactersCharacterIdSkillsSkillToJSONTyped(value?: GetCharactersCharacterIdSkillsSkill | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCharactersCharacterIdSkillsSkill.d.ts.map