Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.95 KB

File metadata and controls

45 lines (36 loc) · 1.95 KB

GroupSchemaAttribute

Properties

Name Type Description Notes
description str [optional]
enum List[str] [optional]
external_name str [optional]
external_namespace str [optional]
items UserSchemaAttributeItems [optional]
master UserSchemaAttributeMaster [optional]
max_length int [optional]
min_length int [optional]
mutability str [optional]
one_of List[UserSchemaAttributeEnum] [optional]
permissions List[UserSchemaAttributePermission] [optional]
required bool [optional]
scope UserSchemaAttributeScope [optional]
title str [optional]
type UserSchemaAttributeType [optional]
union UserSchemaAttributeUnion [optional]
unique str [optional]

Example

from okta.models.group_schema_attribute import GroupSchemaAttribute

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

# convert the object into a dict
group_schema_attribute_dict = group_schema_attribute_instance.to_dict()
# create an instance of GroupSchemaAttribute from a dict
group_schema_attribute_from_dict = GroupSchemaAttribute.from_dict(group_schema_attribute_dict)

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