/** * An object giving details on currency code and the amount charged. */ export interface Money { /** The 3-letter currency code defined in ISO 4217. */ currencyCode?: string; /** The amount in decimal form. For example `2.00`. There are no guarantees on the precision unless documented by the message origin. The amount cannot be updated and is read-only. */ amount?: string; }