TweetEditControlInitial
June 7, 2024 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| edit_tweet_ids | List[str] | ||
| editable_until_msecs | str | ||
| edits_remaining | str | ||
| is_edit_eligible | bool |
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)