Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1 KB

PolicyResponse.md

File metadata and controls

31 lines (22 loc) · 1 KB

PolicyResponse

Response object for policy operations

Properties

Name Type Description Notes
rules List[PolicyRule] A set of policy rules
metadata PolicyMetadata

Example

from fireblocks.models.policy_response import PolicyResponse

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

# convert the object into a dict
policy_response_dict = policy_response_instance.to_dict()
# create an instance of PolicyResponse from a dict
policy_response_from_dict = PolicyResponse.from_dict(policy_response_dict)

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