Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 989 Bytes

File metadata and controls

29 lines (20 loc) · 989 Bytes

AllowDownloadStatus

Properties

Name Type Description Notes
allow_download bool [optional]

Example

from twitter_openapi_python_generated.models.allow_download_status import AllowDownloadStatus

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

# convert the object into a dict
allow_download_status_dict = allow_download_status_instance.to_dict()
# create an instance of AllowDownloadStatus from a dict
allow_download_status_from_dict = AllowDownloadStatus.from_dict(allow_download_status_dict)

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