Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

PolicyRuleRawMessageSigning.md

File metadata and controls

31 lines (22 loc) · 1.21 KB

PolicyRuleRawMessageSigning

Raw message signing configuration

Properties

Name Type Description Notes
algorithm str [optional]
derivation_path PolicyRuleRawMessageSigningDerivationPath [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]