import {Enum} from "./Enum"; import {EnumValue} from "./EnumValue"; /** * Represents possible values indicating which data type was used to calculate Open P/L - Print or Quote. */ export interface CryptoOpenUpdateReason extends Enum { /** * Value indicating that Open P/L was calculated using Quote. * @type {EnumValue} */ readonly Quote: EnumValue; /** * Value indicating that Open P/L was calculated using Print. * @type {EnumValue} */ readonly Print: EnumValue; }