Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

SolutionSecurity

The Solution security information

Properties

Name Type Description Notes
default str The role by default
access_control_list List[SolutionAccessControl] The list which can access this Solution with detailed access control information

Example

from cosmotech_api.models.solution_security import SolutionSecurity

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

# convert the object into a dict
solution_security_dict = solution_security_instance.to_dict()
# create an instance of SolutionSecurity from a dict
solution_security_from_dict = SolutionSecurity.from_dict(solution_security_dict)

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