Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.43 KB

ResourceListOfPolicyCollectionResponse.md

File metadata and controls

32 lines (24 loc) · 1.43 KB

ResourceListOfPolicyCollectionResponse

Properties

Name Type Description Notes
values List[PolicyCollectionResponse]
href str [optional]
links List[Link] [optional]
next_page str [optional]
previous_page str [optional]

Example

from finbourne_access.models.resource_list_of_policy_collection_response import ResourceListOfPolicyCollectionResponse

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

# convert the object into a dict
resource_list_of_policy_collection_response_dict = resource_list_of_policy_collection_response_instance.to_dict()
# create an instance of ResourceListOfPolicyCollectionResponse from a dict
resource_list_of_policy_collection_response_form_dict = resource_list_of_policy_collection_response.from_dict(resource_list_of_policy_collection_response_dict)

Back to Model listBack to API listBack to README