import {UserCryptoExecution} from "./UserCryptoExecution"; /** * Represents base Crypto order. */ export interface BaseCryptoOrder extends UserCryptoExecution{ /** * Order identifier for client. * @type {string} */ ClientOrderId: string; }