Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

File metadata and controls

32 lines (23 loc) · 1.06 KB

UserSchemaPublic

Properties

Name Type Description Notes
id str [optional]
properties Dict[str, UserSchemaAttribute] [optional]
required List[str] [optional]
type str [optional]

Example

from okta.models.user_schema_public import UserSchemaPublic

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

# convert the object into a dict
user_schema_public_dict = user_schema_public_instance.to_dict()
# create an instance of UserSchemaPublic from a dict
user_schema_public_from_dict = UserSchemaPublic.from_dict(user_schema_public_dict)

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