Raw message signing configuration
Name | Type | Description | Notes |
---|---|---|---|
algorithm | str | [optional] | |
derivation_path | PolicyRuleRawMessageSigningDerivationPath | [optional] |
from fireblocks.models.policy_rule_raw_message_signing import PolicyRuleRawMessageSigning
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyRuleRawMessageSigning from a JSON string
policy_rule_raw_message_signing_instance = PolicyRuleRawMessageSigning.from_json(json)
# print the JSON string representation of the object
print(PolicyRuleRawMessageSigning.to_json())
# convert the object into a dict
policy_rule_raw_message_signing_dict = policy_rule_raw_message_signing_instance.to_dict()
# create an instance of PolicyRuleRawMessageSigning from a dict
policy_rule_raw_message_signing_from_dict = PolicyRuleRawMessageSigning.from_dict(policy_rule_raw_message_signing_dict)