import {UserCryptoExecution} from "./UserCryptoExecution"; import {BaseMessage} from "../BaseMessage"; import {EnumValue} from "../../enums/EnumValue"; /** * Message that indicates about successful execution of new Crypto order. */ export interface CryptoPending extends UserCryptoExecution, BaseMessage { /** * Identifier client set to order identifier for client. * @type {string} */ ClientOrderId: string; /** * Number of transaction. * @type {string} */ TransactionNo: string; /** * Name of stock for which order. * @type {string} */ Symbol: string; /** * Side of order. * @type {EnumValue} */ Side: EnumValue; /** * Type of order. * @type {EnumValue} */ OrderType: EnumValue; /** * Period of time of order topicality before execution or canceling. * @type {EnumValue} */ TimeInForce: EnumValue; /** * Limit price. * @type {number} */ Price: number; /** * Stop price. * @type {number} */ StopPrice: number; /** * Count of shares that were entered by account. * @type {number} */ EntryShares: number; /** * Count of shares that are remaining. * @type {number} */ PendShares: number; /** * Market exchange. * @type {string} */ Exchange: string; /** * Market method. * @type {string} */ Method: string; /** * Value indicating whether bid should be shown as data of update of Crypto Order Book. * @type {boolean} */ IsHidden: boolean; }