Skip to content

FileDownloadURL

Properties

NameTypeDescriptionNotes
idstr
filenamestr
usesstr
project_idstr
uploaded_bystr
statsobject[optional]
statusstr
uploaded_atdatetime
download_urlstr[optional]

Example

python
from syntheticusers.models.file_download_url import FileDownloadURL

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

# convert the object into a dict
file_download_url_dict = file_download_url_instance.to_dict()
# create an instance of FileDownloadURL from a dict
file_download_url_from_dict = FileDownloadURL.from_dict(file_download_url_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.