Appearance
FileDownloadURL
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| filename | str | ||
| uses | str | ||
| project_id | str | ||
| uploaded_by | str | ||
| stats | object | [optional] | |
| status | str | ||
| uploaded_at | datetime | ||
| download_url | str | [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)