CommunityRule

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
descriptionstr[optional]
namestr
rest_idstr

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]