| Name | Type | Description | Notes |
|---|---|---|---|
| var_schema | str | [optional] [readonly] | |
| created | str | [optional] [readonly] | |
| definitions | UserSchemaDefinitions | [optional] | |
| id | str | [optional] [readonly] | |
| last_updated | str | [optional] [readonly] | |
| name | str | [optional] [readonly] | |
| properties | UserSchemaProperties | [optional] | |
| title | str | [optional] | |
| type | str | [optional] [readonly] | |
| links | LinksSelf | [optional] |
from okta.models.user_schema import UserSchema
# TODO update the JSON string below
json = "{}"
# create an instance of UserSchema from a JSON string
user_schema_instance = UserSchema.from_json(json)
# print the JSON string representation of the object
print(UserSchema.to_json())
# convert the object into a dict
user_schema_dict = user_schema_instance.to_dict()
# create an instance of UserSchema from a dict
user_schema_from_dict = UserSchema.from_dict(user_schema_dict)