import {IdMessage} from "./IdMessage"; import {BaseMessage} from "../BaseMessage"; import {CryptoAccountInfo} from "../manager/CryptoAccountInfo"; import {CryptoExecutorAccountConnectionStatus} from "../authentication/CryptoExecutorAccountConnectionStatus"; /** * Request to CryptoAccountInfoRequest which contains information about crypto account. */ export interface CryptoAccountInfoResponse extends IdMessage, BaseMessage { /** * Information about crypto account. * @type {CryptoAccountInfo} */ AccountInfo: CryptoAccountInfo; /** * Status of connection to crypto execution channel. * @type {CryptoExecutorAccountConnectionStatus} */ ConnectionStatus: CryptoExecutorAccountConnectionStatus; }