Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

File metadata and controls

32 lines (23 loc) · 1.09 KB

GroupSchemaCustom

Properties

Name Type Description Notes
id str [optional] [readonly]
properties Dict[str, GroupSchemaAttribute] [optional]
required List[str] [optional]
type str [optional]

Example

from okta.models.group_schema_custom import GroupSchemaCustom

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

# convert the object into a dict
group_schema_custom_dict = group_schema_custom_instance.to_dict()
# create an instance of GroupSchemaCustom from a dict
group_schema_custom_from_dict = GroupSchemaCustom.from_dict(group_schema_custom_dict)

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