Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.18 KB

File metadata and controls

30 lines (21 loc) · 1.18 KB

UserSchemaAttributeMaster

Properties

Name Type Description Notes
priority List[UserSchemaAttributeMasterPriority] [optional]
type UserSchemaAttributeMasterType [optional]

Example

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)

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