import {BaseCryptoExecution} from "./BaseCryptoExecution"; /** * Represents class of crypto trading. */ export interface CryptoTrading extends BaseCryptoExecution { /** * Unique number per one ticket. For cancel messages it represents number of bid that should be canceled. * @type {string} */ TicketNo: string; /** * Unique number per one ticket. For cancel messages it represents number of bid that should be canceled. * @type {string} */ TicketNoString: string; /** * Identifier for sorting accounts activity. * @type {number} */ ActivityOrderId: number; }