Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.31 KB

File metadata and controls

31 lines (22 loc) · 1.31 KB

LegacyPolicyRuleRawMessageSigning

Raw message signing configuration

Properties

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

Example

from fireblocks.models.legacy_policy_rule_raw_message_signing import LegacyPolicyRuleRawMessageSigning

# TODO update the JSON string below
json = "{}"
# create an instance of LegacyPolicyRuleRawMessageSigning from a JSON string
legacy_policy_rule_raw_message_signing_instance = LegacyPolicyRuleRawMessageSigning.from_json(json)
# print the JSON string representation of the object
print(LegacyPolicyRuleRawMessageSigning.to_json())

# convert the object into a dict
legacy_policy_rule_raw_message_signing_dict = legacy_policy_rule_raw_message_signing_instance.to_dict()
# create an instance of LegacyPolicyRuleRawMessageSigning from a dict
legacy_policy_rule_raw_message_signing_from_dict = LegacyPolicyRuleRawMessageSigning.from_dict(legacy_policy_rule_raw_message_signing_dict)

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