import {UserCryptoExecution} from "./UserCryptoExecution"; import {BaseMessage} from "../BaseMessage"; import {EnumValue} from "../../enums/EnumValue"; /** * Message indicating that server side accept new Crypto order. */ export interface CryptoSending extends UserCryptoExecution, BaseMessage { /** * Identifier client set to order identifier for client. * @type {string} */ ClientOrderId: string; /** * Number of transaction. * @type {string} */ TransactionNo: string; /** * Abbreviation for stock name. * @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; /** * Accepted shares count. * @type {number} */ Shares: 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: number; }