/** * Represents base class with set of properties for all Crypto execution data. */ export interface BaseCryptoExecution { /** * Name of account. * @type {string} */ AccountName: string; /** * Time on market when message was created. * @type {Date} */ Time: Date; /** * Time of server when message was created. * @type {Date} */ ServerTime: Date; /** * * Ticks of time on market when message was created. * @type {BigInt} */ TimeTicks: BigInt; /** * * Ticks of server's time on market when message was created. * @type {BigInt} */ ServerTimeTicks: BigInt; }