| Name | Type | Description | Notes |
|---|---|---|---|
| desc | str | The group's description. | [optional] |
| group | str | The group's ID. | [optional] |
| items | List[InlineResponse20044ResultDataItems] | The groups and their application details. | [optional] |
from clientapi_cpanel.models.inline_response20044_result_data_groups import InlineResponse20044ResultDataGroups
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse20044ResultDataGroups from a JSON string
inline_response20044_result_data_groups_instance = InlineResponse20044ResultDataGroups.from_json(json)
# print the JSON string representation of the object
print(InlineResponse20044ResultDataGroups.to_json())
# convert the object into a dict
inline_response20044_result_data_groups_dict = inline_response20044_result_data_groups_instance.to_dict()
# create an instance of InlineResponse20044ResultDataGroups from a dict
inline_response20044_result_data_groups_from_dict = InlineResponse20044ResultDataGroups.from_dict(inline_response20044_result_data_groups_dict)