Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

TweetCardPlatformDevice

Properties

Name Type Description Notes
name str
version str

Example

from twitter_openapi_python_generated.models.tweet_card_platform_device import TweetCardPlatformDevice

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

# convert the object into a dict
tweet_card_platform_device_dict = tweet_card_platform_device_instance.to_dict()
# create an instance of TweetCardPlatformDevice from a dict
tweet_card_platform_device_from_dict = TweetCardPlatformDevice.from_dict(tweet_card_platform_device_dict)

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