Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

File metadata and controls

30 lines (21 loc) · 1.15 KB

ContentDisclosure

Properties

Name Type Description Notes
advertising_disclosure ContentDisclosureAdvertisingDisclosure [optional]
ai_generated_disclosure ContentDisclosureAiGeneratedDisclosure [optional]

Example

from twitter_openapi_python_generated.models.content_disclosure import ContentDisclosure

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

# convert the object into a dict
content_disclosure_dict = content_disclosure_instance.to_dict()
# create an instance of ContentDisclosure from a dict
content_disclosure_from_dict = ContentDisclosure.from_dict(content_disclosure_dict)

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