import TransactionType from '../TransactionType'; import BaseTransactionInstructions from './BaseInstructions'; /** * Gives another account pre-approval to deliver payments to the sender of the transaction. * Taken from https://xrpl.org/depositpreauth.html. * * @extends BaseTransactionInstructions * * @property Authorize - The XRP Ledger address of the sender to pre-authorize. * @property Unauthorize - The XRP Ledger address of a sender whose pre-authorization should be revoked. */ export default interface DepositPreauthInstructions extends BaseTransactionInstructions { readonly TransactionType: TransactionType.DepositPreauth; readonly Authorize?: string; readonly Unauthorize?: string; } //# sourceMappingURL=DepositPreauth.d.ts.map