Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

File metadata and controls

32 lines (23 loc) · 1.2 KB

BirdwatchPivotNote

Properties

Name Type Description Notes
grok_translated_community_note_with_availability GrokTranslatedCommunityNoteWithAvailability [optional]
is_community_note_translatable bool [optional]
language str [optional]
rest_id str

Example

from twitter_openapi_python_generated.models.birdwatch_pivot_note import BirdwatchPivotNote

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

# convert the object into a dict
birdwatch_pivot_note_dict = birdwatch_pivot_note_instance.to_dict()
# create an instance of BirdwatchPivotNote from a dict
birdwatch_pivot_note_from_dict = BirdwatchPivotNote.from_dict(birdwatch_pivot_note_dict)

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