Amount range with minimum and maximum values
| Name | Type | Description | Notes |
|---|---|---|---|
| range | AmountRangeMinMax2 |
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)