Skip to content

FileWithPresignedURL

Properties

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

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)

[Back to API list] [Back to SDK]

Released under the MIT License.