# HelloextendApiClient::Amount ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **currency_code** | **String** | This is an ISO-4217 currency code. See <a href='https://en.wikipedia.org/wiki/ISO_4217'>https://en.wikipedia.org/wiki/ISO_4217</a> for more information | [optional] **amount** | **Float** | Amount, in cents, eg $19.99 would be 1999 | [optional] ## Code Sample ```ruby require 'HelloextendApiClient' instance = HelloextendApiClient::Amount.new(currency_code: USD, amount: 1999) ```