/** * Contains arbitrary messaging data that can be included with a transaction. * Taken from https://xrpl.org/transaction-common-fields.html#memos-field. * * @property Memo - Contains the actual memo values. */ export default interface Memo { /** * Contains the actual data or values held in a memo. * * @memberof Memo */ readonly Memo: { /** * Arbitrary hex value, conventionally containing the content of the memo. * * @type {string} */ readonly MemoData?: string; /** * Hex value representing characters allowed in URLs. Conventionally containing information on how the memo is encoded. * * @type {string} */ readonly MemoFormat?: string; /** * Hex value representing characters allowed in URLs. Conventionally, a unique relation that defines the format of this memo. * * @type {string} */ readonly MemoType?: string; }; } //# sourceMappingURL=Memo.d.ts.map