Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 839 Bytes

File metadata and controls

29 lines (20 loc) · 839 Bytes

GroupSpec

Properties

Name Type Description Notes
display_name str Display name of group

Example

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)

[Back to Model list] [Back to API list] [Back to README]