You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The number of admins that will requires to approve an operation
[optional]
Example
fromfireblocks.models.set_admin_quorum_threshold_requestimportSetAdminQuorumThresholdRequest# TODO update the JSON string belowjson="{}"# create an instance of SetAdminQuorumThresholdRequest from a JSON stringset_admin_quorum_threshold_request_instance=SetAdminQuorumThresholdRequest.from_json(json)
# print the JSON string representation of the objectprint(SetAdminQuorumThresholdRequest.to_json())
# convert the object into a dictset_admin_quorum_threshold_request_dict=set_admin_quorum_threshold_request_instance.to_dict()
# create an instance of SetAdminQuorumThresholdRequest from a dictset_admin_quorum_threshold_request_from_dict=SetAdminQuorumThresholdRequest.from_dict(set_admin_quorum_threshold_request_dict)