Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

File metadata and controls

30 lines (21 loc) · 1.15 KB

UserSchemaAttributeMasterPriority

Properties

Name Type Description Notes
type str [optional]
value str [optional]

Example

from okta.models.user_schema_attribute_master_priority import UserSchemaAttributeMasterPriority

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

# convert the object into a dict
user_schema_attribute_master_priority_dict = user_schema_attribute_master_priority_instance.to_dict()
# create an instance of UserSchemaAttributeMasterPriority from a dict
user_schema_attribute_master_priority_from_dict = UserSchemaAttributeMasterPriority.from_dict(user_schema_attribute_master_priority_dict)

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