Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.47 KB

File metadata and controls

35 lines (26 loc) · 1.47 KB

UserSensitiveCategories200Response

Properties

Name Type Description Notes
id str
name str
type str
permissions List[AccessType]
account_ids List[str]
sensitive_categories List[UserSensitiveCategoriesSensitiveCategoriesInner]
accessible_permission_configurations float

Example

from ibm_gdsc_sdk_saas.models.user_sensitive_categories200_response import UserSensitiveCategories200Response

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

# convert the object into a dict
user_sensitive_categories200_response_dict = user_sensitive_categories200_response_instance.to_dict()
# create an instance of UserSensitiveCategories200Response from a dict
user_sensitive_categories200_response_from_dict = UserSensitiveCategories200Response.from_dict(user_sensitive_categories200_response_dict)

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