| Name |
Type |
Description |
Notes |
| const |
str |
The enumerated value |
[optional] |
| title |
str |
The display label for the enumerated value |
[optional] |
from okta.models.user_schema_attribute_enum import UserSchemaAttributeEnum
# TODO update the JSON string below
json = "{}"
# create an instance of UserSchemaAttributeEnum from a JSON string
user_schema_attribute_enum_instance = UserSchemaAttributeEnum.from_json(json)
# print the JSON string representation of the object
print(UserSchemaAttributeEnum.to_json())
# convert the object into a dict
user_schema_attribute_enum_dict = user_schema_attribute_enum_instance.to_dict()
# create an instance of UserSchemaAttributeEnum from a dict
user_schema_attribute_enum_from_dict = UserSchemaAttributeEnum.from_dict(user_schema_attribute_enum_dict)
[Back to Model list] [Back to API list] [Back to README]