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)

143 lines 5.07 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 GetCharactersCharacterIdOrdersHistory200Ok */ export interface GetCharactersCharacterIdOrdersHistory200Ok { /** * Number of days the order was valid for (starting from the issued date). An order expires at time issued + duration * @type {number} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ duration: number; /** * For buy orders, the amount of ISK in escrow * @type {number} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ escrow?: number; /** * True if the order is a bid (buy) order * @type {boolean} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ isBuyOrder?: boolean; /** * Signifies whether the buy/sell order was placed on behalf of a corporation. * @type {boolean} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ isCorporation: boolean; /** * Date and time when this order was issued * @type {Date} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ issued: Date; /** * ID of the location where order was placed * @type {number} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ locationId: number; /** * For buy orders, the minimum quantity that will be accepted in a matching sell order * @type {number} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ minVolume?: number; /** * Unique order ID * @type {number} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ orderId: number; /** * Cost per unit for this order * @type {number} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ price: number; /** * Valid order range, numbers are ranges in jumps * @type {string} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ range: GetCharactersCharacterIdOrdersHistory200OkRangeEnum; /** * ID of the region where order was placed * @type {number} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ regionId: number; /** * Current order state * @type {string} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ state: GetCharactersCharacterIdOrdersHistory200OkStateEnum; /** * The type ID of the item transacted in this order * @type {number} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ typeId: number; /** * Quantity of items still required or offered * @type {number} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ volumeRemain: number; /** * Quantity of items required or offered at time order was placed * @type {number} * @memberof GetCharactersCharacterIdOrdersHistory200Ok */ volumeTotal: number; } /** * @export */ export declare const GetCharactersCharacterIdOrdersHistory200OkRangeEnum: { readonly _1: "1"; readonly _10: "10"; readonly _2: "2"; readonly _20: "20"; readonly _3: "3"; readonly _30: "30"; readonly _4: "4"; readonly _40: "40"; readonly _5: "5"; readonly Region: "region"; readonly Solarsystem: "solarsystem"; readonly Station: "station"; }; export type GetCharactersCharacterIdOrdersHistory200OkRangeEnum = typeof GetCharactersCharacterIdOrdersHistory200OkRangeEnum[keyof typeof GetCharactersCharacterIdOrdersHistory200OkRangeEnum]; /** * @export */ export declare const GetCharactersCharacterIdOrdersHistory200OkStateEnum: { readonly Cancelled: "cancelled"; readonly Expired: "expired"; }; export type GetCharactersCharacterIdOrdersHistory200OkStateEnum = typeof GetCharactersCharacterIdOrdersHistory200OkStateEnum[keyof typeof GetCharactersCharacterIdOrdersHistory200OkStateEnum]; /** * Check if a given object implements the GetCharactersCharacterIdOrdersHistory200Ok interface. */ export declare function instanceOfGetCharactersCharacterIdOrdersHistory200Ok(value: object): value is GetCharactersCharacterIdOrdersHistory200Ok; export declare function GetCharactersCharacterIdOrdersHistory200OkFromJSON(json: any): GetCharactersCharacterIdOrdersHistory200Ok; export declare function GetCharactersCharacterIdOrdersHistory200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdOrdersHistory200Ok; export declare function GetCharactersCharacterIdOrdersHistory200OkToJSON(json: any): GetCharactersCharacterIdOrdersHistory200Ok; export declare function GetCharactersCharacterIdOrdersHistory200OkToJSONTyped(value?: GetCharactersCharacterIdOrdersHistory200Ok | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCharactersCharacterIdOrdersHistory200Ok.d.ts.map