Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 928 Bytes

Money.md

File metadata and controls

12 lines (8 loc) · 928 Bytes

Money

Properties

Name Getter Setter Type Description Notes
amount getAmount() setAmount($value) int The amount of money, in the smallest denomination of the currency indicated by `currency`. For example, when `currency` is `USD`, `amount` is in cents. [optional]
currency getCurrency() setCurrency($value) string The type of currency, in ISO 4217 format. For example, the currency code for US dollars is `USD`. See Currency for possible values. [optional]

Note: All properties are protected and only accessed via getters and setters.

[Back to Model list] [Back to API list] [Back to README]