/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type TransferTron = { /** * Blockchain address to send assets */ address: string; /** * Amount to be sent in Tron. */ amount: string; /** * Compliance check, if withdrawal is not compliant, it will not be processed. */ compliant?: boolean; /** * Private key of sender address. Either mnemonic and index, privateKey or signature Id must be present - depends on the type of account and xpub. */ fromPrivateKey: string; /** * Fee to be submitted as a transaction fee to blockchain. If none is set, default value of 2.5 TRX is used. */ fee?: string; /** * Identifier of the payment, shown for created Transaction within Tatum sender account. */ paymentId?: string; /** * Sender account ID */ senderAccountId: string; /** * Note visible to owner of withdrawing account */ senderNote?: string; }