All custom profile properties are defined in a profile subschema with the resolution scope #custom
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The subschema name | [optional] [readonly] |
| properties | Dict[str, GroupSchemaAttribute] | The `#custom` object properties | [optional] |
| required | List[str] | A collection indicating required property names | [optional] [readonly] |
| type | str | The object type | [optional] [readonly] |
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)