import {IdMessage} from "./IdMessage"; import {BaseMessage} from "../BaseMessage"; /** * Request to receive information about account by its' name for Crypto trading. */ export interface CryptoAccountInfoRequest extends IdMessage, BaseMessage { /** * Name of account for which information need to be received. * @type {String} */ AccountName: string; }