import {IdMessage} from "./IdMessage"; import {BaseMessage} from "../BaseMessage"; import {CryptoAccountInfo} from "../manager/CryptoAccountInfo"; import {CryptoExecutorAccountConnectionStatus} from "../authentication/CryptoExecutorAccountConnectionStatus"; /** * Response on CryptoLinkedAccountsRequest. */ export interface CryptoLinkedAccountsResponse extends IdMessage, BaseMessage { /** * Collection of accounts' information for linked accounts. * @type {CryptoAccountInfo[]} */ AccountsInfoes: Array; /** * Collection of connection statuses of linked accounts. * @type {CryptoExecutorAccountConnectionStatus[]} */ ConnectionStatuses: Array; }