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)

40 lines 1.88 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. */ import type { PostCharactersCharacterIdAssetsLocationsPosition } from './PostCharactersCharacterIdAssetsLocationsPosition'; /** * 200 ok object * @export * @interface PostCharactersCharacterIdAssetsLocations200Ok */ export interface PostCharactersCharacterIdAssetsLocations200Ok { /** * item_id integer * @type {number} * @memberof PostCharactersCharacterIdAssetsLocations200Ok */ itemId: number; /** * * @type {PostCharactersCharacterIdAssetsLocationsPosition} * @memberof PostCharactersCharacterIdAssetsLocations200Ok */ position: PostCharactersCharacterIdAssetsLocationsPosition; } /** * Check if a given object implements the PostCharactersCharacterIdAssetsLocations200Ok interface. */ export declare function instanceOfPostCharactersCharacterIdAssetsLocations200Ok(value: object): value is PostCharactersCharacterIdAssetsLocations200Ok; export declare function PostCharactersCharacterIdAssetsLocations200OkFromJSON(json: any): PostCharactersCharacterIdAssetsLocations200Ok; export declare function PostCharactersCharacterIdAssetsLocations200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostCharactersCharacterIdAssetsLocations200Ok; export declare function PostCharactersCharacterIdAssetsLocations200OkToJSON(json: any): PostCharactersCharacterIdAssetsLocations200Ok; export declare function PostCharactersCharacterIdAssetsLocations200OkToJSONTyped(value?: PostCharactersCharacterIdAssetsLocations200Ok | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PostCharactersCharacterIdAssetsLocations200Ok.d.ts.map