Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

SetConfirmationsThresholdResponse.md

File metadata and controls

30 lines (21 loc) · 1.17 KB

SetConfirmationsThresholdResponse

Properties

Name Type Description Notes
success bool [optional]
transactions List[str] [optional]

Example

from fireblocks.models.set_confirmations_threshold_response import SetConfirmationsThresholdResponse

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

# convert the object into a dict
set_confirmations_threshold_response_dict = set_confirmations_threshold_response_instance.to_dict()
# create an instance of SetConfirmationsThresholdResponse from a dict
set_confirmations_threshold_response_from_dict = SetConfirmationsThresholdResponse.from_dict(set_confirmations_threshold_response_dict)

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