Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

AmountOverTimeConfig

Amount over time configuration

Properties

Name Type Description Notes
range AmountRangeMinMax2
currency PolicyCurrency
time_period TimePeriodConfig

Example

from fireblocks.models.amount_over_time_config import AmountOverTimeConfig

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

# convert the object into a dict
amount_over_time_config_dict = amount_over_time_config_instance.to_dict()
# create an instance of AmountOverTimeConfig from a dict
amount_over_time_config_from_dict = AmountOverTimeConfig.from_dict(amount_over_time_config_dict)

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