Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 921 Bytes

File metadata and controls

30 lines (21 loc) · 921 Bytes

AmountRange

Amount range with minimum and maximum values

Properties

Name Type Description Notes
range AmountRangeMinMax2

Example

from fireblocks.models.amount_range import AmountRange

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

# convert the object into a dict
amount_range_dict = amount_range_instance.to_dict()
# create an instance of AmountRange from a dict
amount_range_from_dict = AmountRange.from_dict(amount_range_dict)

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