Skip to content

Workgroup

Properties

Name Type Description Notes
id str
name str
description str

Example

from libica.openapi.v3.models.workgroup import Workgroup

# TODO update the JSON string below
json = "{}"
# create an instance of Workgroup from a JSON string
workgroup_instance = Workgroup.from_json(json)
# print the JSON string representation of the object
print(Workgroup.to_json())

# convert the object into a dict
workgroup_dict = workgroup_instance.to_dict()
# create an instance of Workgroup from a dict
workgroup_from_dict = Workgroup.from_dict(workgroup_dict)

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