Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

ProcessExtractedFiles

Properties

Name Type Description Notes
files List[ExtractedFileEntry] [optional]
process_seqid int

Example

from revengai.models.process_extracted_files import ProcessExtractedFiles

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

# convert the object into a dict
process_extracted_files_dict = process_extracted_files_instance.to_dict()
# create an instance of ProcessExtractedFiles from a dict
process_extracted_files_from_dict = ProcessExtractedFiles.from_dict(process_extracted_files_dict)

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