TweetPostCta

May 20, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
display_locationsList[str]
post_ctaPostCta
scribe_idstr[optional]

Example

from twitter_openapi_python_generated.models.tweet_post_cta import TweetPostCta

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

# convert the object into a dict
tweet_post_cta_dict = tweet_post_cta_instance.to_dict()
# create an instance of TweetPostCta from a dict
tweet_post_cta_from_dict = TweetPostCta.from_dict(tweet_post_cta_dict)

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