TweetEditControlInitial

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
edit_tweet_idsList[str]
editable_until_msecsstr
edits_remainingstr
is_edit_eligiblebool

Example

from twitter_openapi_python_generated.models.tweet_edit_control_initial import TweetEditControlInitial

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

# convert the object into a dict
tweet_edit_control_initial_dict = tweet_edit_control_initial_instance.to_dict()
# create an instance of TweetEditControlInitial from a dict
tweet_edit_control_initial_from_dict = TweetEditControlInitial.from_dict(tweet_edit_control_initial_dict)

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