Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

File metadata and controls

29 lines (20 loc) · 1.09 KB

UserSchemaPropertiesProfileItem

Properties

Name Type Description Notes
ref str [optional]

Example

from okta.models.user_schema_properties_profile_item import UserSchemaPropertiesProfileItem

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

# convert the object into a dict
user_schema_properties_profile_item_dict = user_schema_properties_profile_item_instance.to_dict()
# create an instance of UserSchemaPropertiesProfileItem from a dict
user_schema_properties_profile_item_from_dict = UserSchemaPropertiesProfileItem.from_dict(user_schema_properties_profile_item_dict)

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