Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 989 Bytes

File metadata and controls

35 lines (26 loc) · 989 Bytes

XList

Properties

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]

Example

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)

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