Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 889 Bytes

PolicyRules.md

File metadata and controls

29 lines (20 loc) · 889 Bytes

PolicyRules

Properties

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

Example

from fireblocks.models.policy_rules import PolicyRules

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

# convert the object into a dict
policy_rules_dict = policy_rules_instance.to_dict()
# create an instance of PolicyRules from a dict
policy_rules_from_dict = PolicyRules.from_dict(policy_rules_dict)

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