| Name |
Type |
Description |
Notes |
| description |
str |
The human-readable description of the User Type |
|
| display_name |
str |
The human-readable name of the User Type |
|
| name |
str |
The name of the existing type |
|
from okta.models.user_type_put_request import UserTypePutRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UserTypePutRequest from a JSON string
user_type_put_request_instance = UserTypePutRequest.from_json(json)
# print the JSON string representation of the object
print(UserTypePutRequest.to_json())
# convert the object into a dict
user_type_put_request_dict = user_type_put_request_instance.to_dict()
# create an instance of UserTypePutRequest from a dict
user_type_put_request_from_dict = UserTypePutRequest.from_dict(user_type_put_request_dict)
[Back to Model list] [Back to API list] [Back to README]