Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.33 KB

File metadata and controls

32 lines (23 loc) · 1.33 KB

AutomationSettingsRequest

Request body for setting up a USDC Gateway deposit automation for a vault account.

Properties

Name Type Description Notes
automation_type str The type of automation to configure.
asset_id str The Fireblocks asset ID this automation applies to. Omit to cover all supported USDC Gateway assets. [optional]
time_based TimeBasedTrigger

Example

from fireblocks.models.automation_settings_request import AutomationSettingsRequest

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

# convert the object into a dict
automation_settings_request_dict = automation_settings_request_instance.to_dict()
# create an instance of AutomationSettingsRequest from a dict
automation_settings_request_from_dict = AutomationSettingsRequest.from_dict(automation_settings_request_dict)

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