Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 985 Bytes

File metadata and controls

29 lines (20 loc) · 985 Bytes

LegacyPolicyRules

Properties

Name Type Description Notes
rules List[LegacyPolicyRule] Policy rules [optional]

Example

from fireblocks.models.legacy_policy_rules import LegacyPolicyRules

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

# convert the object into a dict
legacy_policy_rules_dict = legacy_policy_rules_instance.to_dict()
# create an instance of LegacyPolicyRules from a dict
legacy_policy_rules_from_dict = LegacyPolicyRules.from_dict(legacy_policy_rules_dict)

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