import {BaseMessage} from "../BaseMessage"; import {CryptoAccountInfo} from "./CryptoAccountInfo"; import {EnumValue} from "../../enums/EnumValue"; /** * Represents update for CryptoAccountInfo. */ export interface CryptoAccountInfoUpdate extends BaseMessage { /** * Type of update. * @type {EnumValue} */ AccountInfoUpdateType: EnumValue; /** * Account's information. * @type {CryptoAccountInfo} */ AccountInfo: CryptoAccountInfo; }