Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 961 Bytes

File metadata and controls

30 lines (21 loc) · 961 Bytes

AmountConfig

Properties

Name Type Description Notes
range AmountRangeMinMax2
currency PolicyCurrency [optional]

Example

from fireblocks.models.amount_config import AmountConfig

# TODO update the JSON string below
json = "{}"
# create an instance of AmountConfig from a JSON string
amount_config_instance = AmountConfig.from_json(json)
# print the JSON string representation of the object
print(AmountConfig.to_json())

# convert the object into a dict
amount_config_dict = amount_config_instance.to_dict()
# create an instance of AmountConfig from a dict
amount_config_from_dict = AmountConfig.from_dict(amount_config_dict)

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