Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.04 KB

FileObjectResponse.md

File metadata and controls

33 lines (24 loc) · 1.04 KB

FileObjectResponse

Properties

Name Type Description Notes
id int
name str
ingest_label str
metadata Dict[str, str]
status str

Example

from kitchenai_python_sdk.models.file_object_response import FileObjectResponse

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

# convert the object into a dict
file_object_response_dict = file_object_response_instance.to_dict()
# create an instance of FileObjectResponse from a dict
file_object_response_from_dict = FileObjectResponse.from_dict(file_object_response_dict)

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