import TransactionType from '../TransactionType'; import CurrencyAmount from '../util/CurrencyAmount'; import BaseTransactionInstructions from './BaseInstructions'; /** * Attempts to redeem a check. * Taken from https://xrpl.org/checkcash.html. * * @extends BaseTransactionInstructions * * @property Amount - Redeem the Check for exactly this amount, if possible. Must have either this field or DeliverMin. * @property CheckID - The ID of the Check ledger object to cancel, as a 64-character hexadecimal string. * @property DeliverMin - Redeem the Check for at least this amount and for as much as possible. * Must have either this field or Amount. */ export default interface CheckCashInstructions extends BaseTransactionInstructions { readonly TransactionType: TransactionType.CheckCash; readonly Amount?: CurrencyAmount; readonly CheckID: string; readonly DeliverMin?: CurrencyAmount; } //# sourceMappingURL=CheckCashInstructions.d.ts.map