Skip to content

Latest commit

History

History
32 lines (23 loc) · 884 Bytes

File metadata and controls

32 lines (23 loc) · 884 Bytes

FormFile

Properties

NameTypeDescriptionNotes
content_typestr
filenamestr
is_setbool
sizeint

Example

fromrevengai.models.form_fileimportFormFile# TODO update the JSON string belowjson="{}"# create an instance of FormFile from a JSON stringform_file_instance=FormFile.from_json(json)
# print the JSON string representation of the objectprint(FormFile.to_json())
# convert the object into a dictform_file_dict=form_file_instance.to_dict()
# create an instance of FormFile from a dictform_file_from_dict=FormFile.from_dict(form_file_dict)

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