import {Enum} from "./Enum"; import {EnumValue} from "./EnumValue"; /** * Possible values of destination for which data is appointed. */ export interface CryptoDataDestination extends Enum { /** * Default value. * @type {EnumValue} */ readonly None: EnumValue; /** * Value indicating that data is appointed for specified exchange only and should not be processed in combined data. * @type {EnumValue} */ readonly ExchangeOnly: EnumValue; /** * Value indicating that data is appointed for combined data only and should not be processed in exchange-specialized data. * @type {EnumValue} */ readonly CombinedOrderBookOnly: EnumValue; /** * Value indicating that data is appointed for both exchange-specialized and combined data. * @type {EnumValue} */ readonly All: EnumValue; }