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
Id of user that represent agent servers which signs with the key
Example
fromfireblocks.models.modify_signing_key_agent_id_dtoimportModifySigningKeyAgentIdDto# TODO update the JSON string belowjson="{}"# create an instance of ModifySigningKeyAgentIdDto from a JSON stringmodify_signing_key_agent_id_dto_instance=ModifySigningKeyAgentIdDto.from_json(json)
# print the JSON string representation of the objectprint(ModifySigningKeyAgentIdDto.to_json())
# convert the object into a dictmodify_signing_key_agent_id_dto_dict=modify_signing_key_agent_id_dto_instance.to_dict()
# create an instance of ModifySigningKeyAgentIdDto from a dictmodify_signing_key_agent_id_dto_from_dict=ModifySigningKeyAgentIdDto.from_dict(modify_signing_key_agent_id_dto_dict)