Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

TweetEditControlInitial

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)

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