Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

TweetCardPlatformData

Properties

Name Type Description Notes
platform TweetCardPlatform

Example

from twitter_openapi_python_generated.models.tweet_card_platform_data import TweetCardPlatformData

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

# convert the object into a dict
tweet_card_platform_data_dict = tweet_card_platform_data_instance.to_dict()
# create an instance of TweetCardPlatformData from a dict
tweet_card_platform_data_from_dict = TweetCardPlatformData.from_dict(tweet_card_platform_data_dict)

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