/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type TransferAdaMnemonic = { /** * Blockchain address to send assets */ address: string; /** * Amount to be sent in ADA. */ amount: string; /** * Compliance check, if withdrawal is not compliant, it will not be processed. */ compliant?: boolean; /** * Fee to be submitted as a transaction fee to blockchain. If none is set, default value of 1 ADA is used. */ fee?: string; /** * Derivation index of sender address. */ index: number; /** * Mnemonic to generate private key for sender address. Either mnemonic and index, privateKey or signature Id must be present - depends on the type of account and xpub. */ mnemonic: string; /** * Extended public key (xpub) of the wallet associated with the accounts. Should be present, when mnemonic is used. */ xpub: 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; }