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)

63 lines 2.71 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 GetCharactersCharacterIdContractsContractIdItems200Ok */ export interface GetCharactersCharacterIdContractsContractIdItems200Ok { /** * true if the contract issuer has submitted this item with the contract, false if the isser is asking for this item in the contract * @type {boolean} * @memberof GetCharactersCharacterIdContractsContractIdItems200Ok */ isIncluded: boolean; /** * is_singleton boolean * @type {boolean} * @memberof GetCharactersCharacterIdContractsContractIdItems200Ok */ isSingleton: boolean; /** * Number of items in the stack * @type {number} * @memberof GetCharactersCharacterIdContractsContractIdItems200Ok */ quantity: number; /** * -1 indicates that the item is a singleton (non-stackable). If the item happens to be a Blueprint, -1 is an Original and -2 is a Blueprint Copy * @type {number} * @memberof GetCharactersCharacterIdContractsContractIdItems200Ok */ rawQuantity?: number; /** * Unique ID for the item * @type {number} * @memberof GetCharactersCharacterIdContractsContractIdItems200Ok */ recordId: number; /** * Type ID for item * @type {number} * @memberof GetCharactersCharacterIdContractsContractIdItems200Ok */ typeId: number; } /** * Check if a given object implements the GetCharactersCharacterIdContractsContractIdItems200Ok interface. */ export declare function instanceOfGetCharactersCharacterIdContractsContractIdItems200Ok(value: object): value is GetCharactersCharacterIdContractsContractIdItems200Ok; export declare function GetCharactersCharacterIdContractsContractIdItems200OkFromJSON(json: any): GetCharactersCharacterIdContractsContractIdItems200Ok; export declare function GetCharactersCharacterIdContractsContractIdItems200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdContractsContractIdItems200Ok; export declare function GetCharactersCharacterIdContractsContractIdItems200OkToJSON(json: any): GetCharactersCharacterIdContractsContractIdItems200Ok; export declare function GetCharactersCharacterIdContractsContractIdItems200OkToJSONTyped(value?: GetCharactersCharacterIdContractsContractIdItems200Ok | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCharactersCharacterIdContractsContractIdItems200Ok.d.ts.map