import TransactionType from '../TransactionType'; import BaseTransactionInstructions from './BaseInstructions'; /** * Cancels an unredeemed check. * Taken from https://xrpl.org/checkcancel.html. * * @extends BaseTransactionInstructions * * @property CheckID - The ID of the Check ledger object to cancel, as a 64-character hexadecimal string. */ export default interface CheckCancelInstructions extends BaseTransactionInstructions { readonly TransactionType: TransactionType.CheckCancel; readonly CheckID: string; } //# sourceMappingURL=CheckCancelInstructions.d.ts.map