Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.03 KB

File metadata and controls

35 lines (26 loc) · 1.03 KB

XCommunity

Properties

Name Type Description Notes
id str
name str
description str [optional]
created_at str [optional]
member_count float [optional]
access str [optional]
join_policy str [optional]

Example

from unifapi.models.x_community import XCommunity

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

# convert the object into a dict
x_community_dict = x_community_instance.to_dict()
# create an instance of XCommunity from a dict
x_community_from_dict = XCommunity.from_dict(x_community_dict)

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