| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] [readonly] | |
| properties | Dict[str, GroupSchemaAttribute] | [optional] | |
| required | List[str] | [optional] | |
| type | str | [optional] |
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)