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

Name Type Description Notes
content_type str
filename str
is_set bool
size int

Example

from revengai.models.form_file import FormFile

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

# convert the object into a dict
form_file_dict = form_file_instance.to_dict()
# create an instance of FormFile from a dict
form_file_from_dict = FormFile.from_dict(form_file_dict)

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