Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 874 Bytes

FileUpload.md

File metadata and controls

30 lines (21 loc) · 874 Bytes

FileUpload

A single asset file.

Properties

Name Type Description Notes
file bytearray [optional]

Example

from waylay.services.registry.models.file_upload import FileUpload

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

# convert the object into a dict
file_upload_dict = file_upload_instance.to_dict()
# create an instance of FileUpload from a dict
file_upload_form_dict = file_upload.from_dict(file_upload_dict)

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