Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

TweetCardPlatform

Properties

Name Type Description Notes
audience TweetCardPlatformAudience
device TweetCardPlatformDevice

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]