import {BaseMessage} from "../BaseMessage"; import {EnumValue} from "../../enums/EnumValue"; /** * Represents possible values indicating which data type was used to calculate Open P/L - Print or Quote for Crypto trading. */ export interface AccountCryptoOpenUpdate extends BaseMessage { /** * Name of account for which Open P/L was updated. * @type {string} */ AccountName: string; /** * Current Open P/L values. * @type {number} */ Open: number; /** * Value indicating which data type was used to calculate Open P/L - Print or Quote. * @type {EnumValue} */ OpenUpdateReason: EnumValue; }