BirdwatchPivotCallToAction
June 7, 2024 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| destination_url | str | ||
| prompt | str | ||
| title | str |
Example
from twitter_openapi_python_generated.models.birdwatch_pivot_call_to_action import BirdwatchPivotCallToAction
# TODO update the JSON string below
json = "{}"
# create an instance of BirdwatchPivotCallToAction from a JSON string
birdwatch_pivot_call_to_action_instance = BirdwatchPivotCallToAction.from_json(json)
# print the JSON string representation of the object
print(BirdwatchPivotCallToAction.to_json())
# convert the object into a dict
birdwatch_pivot_call_to_action_dict = birdwatch_pivot_call_to_action_instance.to_dict()
# create an instance of BirdwatchPivotCallToAction from a dict
birdwatch_pivot_call_to_action_from_dict = BirdwatchPivotCallToAction.from_dict(birdwatch_pivot_call_to_action_dict)