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)

65 lines 2.47 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. */ /** * jump_clone object * @export * @interface GetCharactersCharacterIdClonesJumpClone */ export interface GetCharactersCharacterIdClonesJumpClone { /** * implants array * @type {Array<number>} * @memberof GetCharactersCharacterIdClonesJumpClone */ implants: Array<number>; /** * jump_clone_id integer * @type {number} * @memberof GetCharactersCharacterIdClonesJumpClone */ jumpCloneId: number; /** * location_id integer * @type {number} * @memberof GetCharactersCharacterIdClonesJumpClone */ locationId: number; /** * location_type string * @type {string} * @memberof GetCharactersCharacterIdClonesJumpClone */ locationType: GetCharactersCharacterIdClonesJumpCloneLocationTypeEnum; /** * name string * @type {string} * @memberof GetCharactersCharacterIdClonesJumpClone */ name?: string; } /** * @export */ export declare const GetCharactersCharacterIdClonesJumpCloneLocationTypeEnum: { readonly Station: "station"; readonly Structure: "structure"; }; export type GetCharactersCharacterIdClonesJumpCloneLocationTypeEnum = typeof GetCharactersCharacterIdClonesJumpCloneLocationTypeEnum[keyof typeof GetCharactersCharacterIdClonesJumpCloneLocationTypeEnum]; /** * Check if a given object implements the GetCharactersCharacterIdClonesJumpClone interface. */ export declare function instanceOfGetCharactersCharacterIdClonesJumpClone(value: object): value is GetCharactersCharacterIdClonesJumpClone; export declare function GetCharactersCharacterIdClonesJumpCloneFromJSON(json: any): GetCharactersCharacterIdClonesJumpClone; export declare function GetCharactersCharacterIdClonesJumpCloneFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdClonesJumpClone; export declare function GetCharactersCharacterIdClonesJumpCloneToJSON(json: any): GetCharactersCharacterIdClonesJumpClone; export declare function GetCharactersCharacterIdClonesJumpCloneToJSONTyped(value?: GetCharactersCharacterIdClonesJumpClone | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCharactersCharacterIdClonesJumpClone.d.ts.map