@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
53 lines • 2.16 kB
TypeScript
/**
* 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.
*/
import type { GetCharactersCharacterIdClonesJumpClone } from './GetCharactersCharacterIdClonesJumpClone';
import type { GetCharactersCharacterIdClonesHomeLocation } from './GetCharactersCharacterIdClonesHomeLocation';
/**
* 200 ok object
* @export
* @interface GetCharactersCharacterIdClonesOk
*/
export interface GetCharactersCharacterIdClonesOk {
/**
*
* @type {GetCharactersCharacterIdClonesHomeLocation}
* @memberof GetCharactersCharacterIdClonesOk
*/
homeLocation?: GetCharactersCharacterIdClonesHomeLocation;
/**
* jump_clones array
* @type {Array<GetCharactersCharacterIdClonesJumpClone>}
* @memberof GetCharactersCharacterIdClonesOk
*/
jumpClones: Array<GetCharactersCharacterIdClonesJumpClone>;
/**
* last_clone_jump_date string
* @type {Date}
* @memberof GetCharactersCharacterIdClonesOk
*/
lastCloneJumpDate?: Date;
/**
* last_station_change_date string
* @type {Date}
* @memberof GetCharactersCharacterIdClonesOk
*/
lastStationChangeDate?: Date;
}
/**
* Check if a given object implements the GetCharactersCharacterIdClonesOk interface.
*/
export declare function instanceOfGetCharactersCharacterIdClonesOk(value: object): value is GetCharactersCharacterIdClonesOk;
export declare function GetCharactersCharacterIdClonesOkFromJSON(json: any): GetCharactersCharacterIdClonesOk;
export declare function GetCharactersCharacterIdClonesOkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdClonesOk;
export declare function GetCharactersCharacterIdClonesOkToJSON(json: any): GetCharactersCharacterIdClonesOk;
export declare function GetCharactersCharacterIdClonesOkToJSONTyped(value?: GetCharactersCharacterIdClonesOk | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCharactersCharacterIdClonesOk.d.ts.map