SensitiveMediaWarning

November 10, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
adult_contentbool[optional]
graphic_violencebool[optional]
otherbool[optional]

Example

from twitter_openapi_python_generated.models.sensitive_media_warning import SensitiveMediaWarning

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

# convert the object into a dict
sensitive_media_warning_dict = sensitive_media_warning_instance.to_dict()
# create an instance of SensitiveMediaWarning from a dict
sensitive_media_warning_from_dict = SensitiveMediaWarning.from_dict(sensitive_media_warning_dict)

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