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
Admins who have to approve the validation key addition
approval_threshold
float
Minimal number of approvers required. 0 for all
request_id
float
Approval request id. Can be cancelled
Example
fromfireblocks.models.create_validation_key_response_dtoimportCreateValidationKeyResponseDto# TODO update the JSON string belowjson="{}"# create an instance of CreateValidationKeyResponseDto from a JSON stringcreate_validation_key_response_dto_instance=CreateValidationKeyResponseDto.from_json(json)
# print the JSON string representation of the objectprint(CreateValidationKeyResponseDto.to_json())
# convert the object into a dictcreate_validation_key_response_dto_dict=create_validation_key_response_dto_instance.to_dict()
# create an instance of CreateValidationKeyResponseDto from a dictcreate_validation_key_response_dto_from_dict=CreateValidationKeyResponseDto.from_dict(create_validation_key_response_dto_dict)