| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str | ||
| description | str | [optional] | |
| url | str | [optional] | |
| member_count | float | [optional] | |
| follower_count | float | [optional] | |
| private | bool | [optional] |
from unifapi.models.x_list import XList
# TODO update the JSON string below
json = "{}"
# create an instance of XList from a JSON string
x_list_instance = XList.from_json(json)
# print the JSON string representation of the object
print(XList.to_json())
# convert the object into a dict
x_list_dict = x_list_instance.to_dict()
# create an instance of XList from a dict
x_list_from_dict = XList.from_dict(x_list_dict)