Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.12 KB

File metadata and controls

29 lines (20 loc) · 1.12 KB

SaveAutomationSettingsResponse

Properties

Name Type Description Notes
automation_id str The ID of the newly created deposit automation.

Example

from fireblocks.models.save_automation_settings_response import SaveAutomationSettingsResponse

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

# convert the object into a dict
save_automation_settings_response_dict = save_automation_settings_response_instance.to_dict()
# create an instance of SaveAutomationSettingsResponse from a dict
save_automation_settings_response_from_dict = SaveAutomationSettingsResponse.from_dict(save_automation_settings_response_dict)

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