import {BaseMessage} from "../BaseMessage"; /** * Link between user and it's Crypto accounts. */ export interface UserCryptoAccountLinkInfo extends BaseMessage { /** * Name if the user. * @type {String} */ User: string; /** * Names of linked accounts. * @type {String[]} */ AccountNames: Array; }