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)

39 lines 1.62 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 PostCharactersCharacterIdAssetsNames200Ok */ export interface PostCharactersCharacterIdAssetsNames200Ok { /** * item_id integer * @type {number} * @memberof PostCharactersCharacterIdAssetsNames200Ok */ itemId: number; /** * name string * @type {string} * @memberof PostCharactersCharacterIdAssetsNames200Ok */ name: string; } /** * Check if a given object implements the PostCharactersCharacterIdAssetsNames200Ok interface. */ export declare function instanceOfPostCharactersCharacterIdAssetsNames200Ok(value: object): value is PostCharactersCharacterIdAssetsNames200Ok; export declare function PostCharactersCharacterIdAssetsNames200OkFromJSON(json: any): PostCharactersCharacterIdAssetsNames200Ok; export declare function PostCharactersCharacterIdAssetsNames200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostCharactersCharacterIdAssetsNames200Ok; export declare function PostCharactersCharacterIdAssetsNames200OkToJSON(json: any): PostCharactersCharacterIdAssetsNames200Ok; export declare function PostCharactersCharacterIdAssetsNames200OkToJSONTyped(value?: PostCharactersCharacterIdAssetsNames200Ok | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PostCharactersCharacterIdAssetsNames200Ok.d.ts.map