TweetCardPlatformDevice
June 7, 2024 ยท View on GitHub
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)