PolicyList
Properties
| Name |
Type |
Description |
Notes |
| pagination |
Pagination |
|
|
| results |
List[Policy] |
|
|
Example
from lakefs_enterprise_sdk.models.policy_list import PolicyList
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyList from a JSON string
policy_list_instance = PolicyList.from_json(json)
# print the JSON string representation of the object
print PolicyList.to_json()
# convert the object into a dict
policy_list_dict = policy_list_instance.to_dict()
# create an instance of PolicyList from a dict
policy_list_form_dict = policy_list.from_dict(policy_list_dict)