| Name | Type | Description | Notes |
|---|---|---|---|
| base | GroupSchemaBase | [optional] | |
| custom | GroupSchemaCustom | [optional] |
from okta.models.group_schema_definitions import GroupSchemaDefinitions
# TODO update the JSON string below
json = "{}"
# create an instance of GroupSchemaDefinitions from a JSON string
group_schema_definitions_instance = GroupSchemaDefinitions.from_json(json)
# print the JSON string representation of the object
print(GroupSchemaDefinitions.to_json())
# convert the object into a dict
group_schema_definitions_dict = group_schema_definitions_instance.to_dict()
# create an instance of GroupSchemaDefinitions from a dict
group_schema_definitions_from_dict = GroupSchemaDefinitions.from_dict(group_schema_definitions_dict)