Skip to content

Latest commit

 

History

History
54 lines (45 loc) · 2.18 KB

File metadata and controls

54 lines (45 loc) · 2.18 KB

CommunityData

Properties

Name Type Description Notes
typename TypeName
actions CommunityActions
admin_results UserResults
created_at int [optional]
creator_results UserResults
custom_banner_media Dict[str, object] [optional]
default_banner_media Dict[str, object] [optional]
description str
id_str str
invites_policy str
invites_result CommunityInvitesResult
is_pinned bool
join_policy str
join_requests_result CommunityJoinRequestsResult [optional]
member_count int
members_facepile_results List[UserResults]
moderator_count int
name str
primary_community_topic PrimaryCommunityTopic [optional]
question str
role str
rules List[CommunityRule]
search_tags List[str]
show_only_users_to_display List[str] [optional]
urls CommunityUrls [optional]
viewer_relationship Dict[str, object] [optional]

Example

from twitter_openapi_python_generated.models.community_data import CommunityData

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

# convert the object into a dict
community_data_dict = community_data_instance.to_dict()
# create an instance of CommunityData from a dict
community_data_from_dict = CommunityData.from_dict(community_data_dict)

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