import {IdMessage} from "./IdMessage"; import {BaseMessage} from "../BaseMessage"; import {CryptoOrderStatusInfo} from "../cryptoExecution/CryptoOrderStatusInfo"; /** * Response to OrderStatusRequest that contains information about Crypto order. */ export interface CryptoOrderStatusResponse extends IdMessage, BaseMessage { /** * Found information about order. * @type {CryptoOrderStatusInfo} */ StatusInfo: CryptoOrderStatusInfo; }