Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

UserTypePutRequest

Properties

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

Example

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]