You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Check.d.ts 525B

12345678910111213141516171819
  1. import { Amount } from '../common';
  2. import BaseLedgerEntry from './BaseLedgerEntry';
  3. export default interface Check extends BaseLedgerEntry {
  4. LedgerEntryType: 'Check';
  5. Account: string;
  6. Destination: string;
  7. Flags: 0;
  8. OwnerNode: string;
  9. PreviousTxnID: string;
  10. PreviousTxnLgrSeq: number;
  11. SendMax: Amount;
  12. Sequence: number;
  13. DestinationNode?: string;
  14. DestinationTag?: number;
  15. Expiration?: number;
  16. InvoiceID?: string;
  17. SourceTag?: number;
  18. }
  19. //# sourceMappingURL=Check.d.ts.map