Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 954 Bytes

File metadata and controls

31 lines (22 loc) · 954 Bytes

CommunityRule

Properties

Name Type Description Notes
description str [optional]
name str
rest_id str

Example

from twitter_openapi_python_generated.models.community_rule import CommunityRule

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

# convert the object into a dict
community_rule_dict = community_rule_instance.to_dict()
# create an instance of CommunityRule from a dict
community_rule_from_dict = CommunityRule.from_dict(community_rule_dict)

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