| Name | Type | Description | Notes |
|---|---|---|---|
| display_name | str | Display name of group |
from halo_client.models.group_spec import GroupSpec
# TODO update the JSON string below
json = "{}"
# create an instance of GroupSpec from a JSON string
group_spec_instance = GroupSpec.from_json(json)
# print the JSON string representation of the object
print(GroupSpec.to_json())
# convert the object into a dict
group_spec_dict = group_spec_instance.to_dict()
# create an instance of GroupSpec from a dict
group_spec_from_dict = GroupSpec.from_dict(group_spec_dict)