A list of signed messages returned for raw signing.
Name | Type | Description | Notes |
---|---|---|---|
content | str | [optional] | |
algorithm | str | [optional] | |
derivation_path | List[float] | [optional] | |
signature | SignedMessageSignature | [optional] | |
public_key | str | [optional] |
from fireblocks.models.signed_message import SignedMessage
# TODO update the JSON string below
json = "{}"
# create an instance of SignedMessage from a JSON string
signed_message_instance = SignedMessage.from_json(json)
# print the JSON string representation of the object
print(SignedMessage.to_json())
# convert the object into a dict
signed_message_dict = signed_message_instance.to_dict()
# create an instance of SignedMessage from a dict
signed_message_from_dict = SignedMessage.from_dict(signed_message_dict)