Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

UserSchemaDefinitions

Properties

Name Type Description Notes
base UserSchemaBase [optional]
custom UserSchemaPublic [optional]

Example

from okta.models.user_schema_definitions import UserSchemaDefinitions

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

# convert the object into a dict
user_schema_definitions_dict = user_schema_definitions_instance.to_dict()
# create an instance of UserSchemaDefinitions from a dict
user_schema_definitions_from_dict = UserSchemaDefinitions.from_dict(user_schema_definitions_dict)

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