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)

45 lines 1.78 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 GetCharactersCharacterIdShipOk */ export interface GetCharactersCharacterIdShipOk { /** * Item id's are unique to a ship and persist until it is repackaged. This value can be used to track repeated uses of a ship, or detect when a pilot changes into a different instance of the same ship type. * @type {number} * @memberof GetCharactersCharacterIdShipOk */ shipItemId: number; /** * ship_name string * @type {string} * @memberof GetCharactersCharacterIdShipOk */ shipName: string; /** * ship_type_id integer * @type {number} * @memberof GetCharactersCharacterIdShipOk */ shipTypeId: number; } /** * Check if a given object implements the GetCharactersCharacterIdShipOk interface. */ export declare function instanceOfGetCharactersCharacterIdShipOk(value: object): value is GetCharactersCharacterIdShipOk; export declare function GetCharactersCharacterIdShipOkFromJSON(json: any): GetCharactersCharacterIdShipOk; export declare function GetCharactersCharacterIdShipOkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdShipOk; export declare function GetCharactersCharacterIdShipOkToJSON(json: any): GetCharactersCharacterIdShipOk; export declare function GetCharactersCharacterIdShipOkToJSONTyped(value?: GetCharactersCharacterIdShipOk | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCharactersCharacterIdShipOk.d.ts.map