Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.41 KB

File metadata and controls

38 lines (29 loc) · 1.41 KB

BirdwatchPivot

Properties

Name Type Description Notes
call_to_action BirdwatchPivotCallToAction [optional]
destination_url str
footer BirdwatchPivotFooter [optional]
icon_type str
note BirdwatchPivotNote [optional]
shorttitle str [optional]
subtitle BirdwatchPivotSubtitle [optional]
title str
title_detail str [optional]
visual_style str [optional]

Example

from twitter_openapi_python_generated.models.birdwatch_pivot import BirdwatchPivot

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

# convert the object into a dict
birdwatch_pivot_dict = birdwatch_pivot_instance.to_dict()
# create an instance of BirdwatchPivot from a dict
birdwatch_pivot_from_dict = BirdwatchPivot.from_dict(birdwatch_pivot_dict)

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