Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.09 KB

PolicyIdRoleResource.md

File metadata and controls

29 lines (21 loc) · 1.09 KB

PolicyIdRoleResource

Properties

Name Type Description Notes
policies List[PolicyId] [optional]
policy_collections List[PolicyCollectionId] [optional]

Example

from finbourne_access.models.policy_id_role_resource import PolicyIdRoleResource

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

# convert the object into a dict
policy_id_role_resource_dict = policy_id_role_resource_instance.to_dict()
# create an instance of PolicyIdRoleResource from a dict
policy_id_role_resource_form_dict = policy_id_role_resource.from_dict(policy_id_role_resource_dict)

Back to Model listBack to API listBack to README