Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 947 Bytes

File metadata and controls

29 lines (20 loc) · 947 Bytes

TweetLegacyScopes

Properties

Name Type Description Notes
followers bool

Example

from twitter_openapi_python_generated.models.tweet_legacy_scopes import TweetLegacyScopes

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

# convert the object into a dict
tweet_legacy_scopes_dict = tweet_legacy_scopes_instance.to_dict()
# create an instance of TweetLegacyScopes from a dict
tweet_legacy_scopes_from_dict = TweetLegacyScopes.from_dict(tweet_legacy_scopes_dict)

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