Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

TimeBasedTrigger

The schedule for this deposit automation.

Properties

Name Type Description Notes
interval_value int How often the deposit runs, in units of intervalUnit.
interval_unit str The unit for intervalValue.
balance_threshold str Minimum USDC balance required before a deposit runs. Set to "0" to sweep the full available balance every time, with no minimum.

Example

from fireblocks.models.time_based_trigger import TimeBasedTrigger

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

# convert the object into a dict
time_based_trigger_dict = time_based_trigger_instance.to_dict()
# create an instance of TimeBasedTrigger from a dict
time_based_trigger_from_dict = TimeBasedTrigger.from_dict(time_based_trigger_dict)

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