Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.33 KB

File metadata and controls

38 lines (29 loc) · 1.33 KB

UserSchema

Properties

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]

Example

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)

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