Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1021 Bytes

SetOtaStatusRequest.md

File metadata and controls

29 lines (20 loc) · 1021 Bytes

SetOtaStatusRequest

Properties

Name Type Description Notes
enabled bool Set true or false to enable or disable OTA transactions [optional]

Example

from fireblocks.models.set_ota_status_request import SetOtaStatusRequest

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

# convert the object into a dict
set_ota_status_request_dict = set_ota_status_request_instance.to_dict()
# create an instance of SetOtaStatusRequest from a dict
set_ota_status_request_from_dict = SetOtaStatusRequest.from_dict(set_ota_status_request_dict)

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