TweetCardPlatform

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
audienceTweetCardPlatformAudience
deviceTweetCardPlatformDevice

Example

from twitter_openapi_python_generated.models.tweet_card_platform import TweetCardPlatform

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

# convert the object into a dict
tweet_card_platform_dict = tweet_card_platform_instance.to_dict()
# create an instance of TweetCardPlatform from a dict
tweet_card_platform_from_dict = TweetCardPlatform.from_dict(tweet_card_platform_dict)

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