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)

101 lines 3.01 kB
/** * EVE Swagger Interface * An OpenAPI for EVE Online * * The version of the OpenAPI document: 1.36 * * * 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 GetCharactersCharacterIdOk */ export interface GetCharactersCharacterIdOk { /** * The character's alliance ID * @type {number} * @memberof GetCharactersCharacterIdOk */ allianceId?: number; /** * Creation date of the character * @type {Date} * @memberof GetCharactersCharacterIdOk */ birthday: Date; /** * bloodline_id integer * @type {number} * @memberof GetCharactersCharacterIdOk */ bloodlineId: number; /** * The character's corporation ID * @type {number} * @memberof GetCharactersCharacterIdOk */ corporationId: number; /** * description string * @type {string} * @memberof GetCharactersCharacterIdOk */ description?: string; /** * ID of the faction the character is fighting for, if the character is enlisted in Factional Warfare * @type {number} * @memberof GetCharactersCharacterIdOk */ factionId?: number; /** * gender string * @type {string} * @memberof GetCharactersCharacterIdOk */ gender: GetCharactersCharacterIdOkGenderEnum; /** * name string * @type {string} * @memberof GetCharactersCharacterIdOk */ name: string; /** * race_id integer * @type {number} * @memberof GetCharactersCharacterIdOk */ raceId: number; /** * security_status number * @type {number} * @memberof GetCharactersCharacterIdOk */ securityStatus?: number; /** * The individual title of the character * @type {string} * @memberof GetCharactersCharacterIdOk */ title?: string; } /** * @export */ export declare const GetCharactersCharacterIdOkGenderEnum: { readonly Female: "female"; readonly Male: "male"; }; export type GetCharactersCharacterIdOkGenderEnum = typeof GetCharactersCharacterIdOkGenderEnum[keyof typeof GetCharactersCharacterIdOkGenderEnum]; /** * Check if a given object implements the GetCharactersCharacterIdOk interface. */ export declare function instanceOfGetCharactersCharacterIdOk(value: object): value is GetCharactersCharacterIdOk; export declare function GetCharactersCharacterIdOkFromJSON(json: any): GetCharactersCharacterIdOk; export declare function GetCharactersCharacterIdOkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdOk; export declare function GetCharactersCharacterIdOkToJSON(json: any): GetCharactersCharacterIdOk; export declare function GetCharactersCharacterIdOkToJSONTyped(value?: GetCharactersCharacterIdOk | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCharactersCharacterIdOk.d.ts.map