Name | Type | Description | Notes |
---|---|---|---|
rules | List[PolicyRule] | Policy rules | [optional] |
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)