| Name | Type | Description | Notes |
|---|---|---|---|
| priority | List[UserSchemaAttributeMasterPriority] | [optional] | |
| type | UserSchemaAttributeMasterType | [optional] |
from okta.models.user_schema_attribute_master import UserSchemaAttributeMaster
# TODO update the JSON string below
json = "{}"
# create an instance of UserSchemaAttributeMaster from a JSON string
user_schema_attribute_master_instance = UserSchemaAttributeMaster.from_json(json)
# print the JSON string representation of the object
print(UserSchemaAttributeMaster.to_json())
# convert the object into a dict
user_schema_attribute_master_dict = user_schema_attribute_master_instance.to_dict()
# create an instance of UserSchemaAttributeMaster from a dict
user_schema_attribute_master_from_dict = UserSchemaAttributeMaster.from_dict(user_schema_attribute_master_dict)