TweetCardPlatformAudience
June 7, 2024 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str |
Example
from twitter_openapi_python_generated.models.tweet_card_platform_audience import TweetCardPlatformAudience
# TODO update the JSON string below
json = "{}"
# create an instance of TweetCardPlatformAudience from a JSON string
tweet_card_platform_audience_instance = TweetCardPlatformAudience.from_json(json)
# print the JSON string representation of the object
print(TweetCardPlatformAudience.to_json())
# convert the object into a dict
tweet_card_platform_audience_dict = tweet_card_platform_audience_instance.to_dict()
# create an instance of TweetCardPlatformAudience from a dict
tweet_card_platform_audience_from_dict = TweetCardPlatformAudience.from_dict(tweet_card_platform_audience_dict)