Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

File metadata and controls

31 lines (22 loc) · 1.19 KB

OrganizationSecurity

Response object for organization security information

Properties

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

Example

from cosmotech_api.models.organization_security import OrganizationSecurity

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

# convert the object into a dict
organization_security_dict = organization_security_instance.to_dict()
# create an instance of OrganizationSecurity from a dict
organization_security_from_dict = OrganizationSecurity.from_dict(organization_security_dict)

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