Appearance
FileWithPresignedURL
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 | ||
| presigned | object |
Example
python
from syntheticusers.models.file_with_presigned_url import FileWithPresignedURL
# TODO update the JSON string below
json = "{}"
# create an instance of FileWithPresignedURL from a JSON string
file_with_presigned_url_instance = FileWithPresignedURL.from_json(json)
# print the JSON string representation of the object
print(FileWithPresignedURL.to_json())
# convert the object into a dict
file_with_presigned_url_dict = file_with_presigned_url_instance.to_dict()
# create an instance of FileWithPresignedURL from a dict
file_with_presigned_url_from_dict = FileWithPresignedURL.from_dict(file_with_presigned_url_dict)