TweetEditControl

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
edit_control_initialTweetEditControlInitial[optional]
edit_tweet_idsList[str][optional]
editable_until_msecsstr[optional]
edits_remainingstr[optional]
initial_tweet_idstr[optional]
is_edit_eligiblebool[optional]

Example

from twitter_openapi_python_generated.models.tweet_edit_control import TweetEditControl

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

# convert the object into a dict
tweet_edit_control_dict = tweet_edit_control_instance.to_dict()
# create an instance of TweetEditControl from a dict
tweet_edit_control_from_dict = TweetEditControl.from_dict(tweet_edit_control_dict)

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