Status Info of the file
Name | Type | Description | Notes |
---|---|---|---|
extracting | str | [optional] | |
extracted | str | [optional] | |
action_needed | str | [optional] | |
processing | str | [optional] | |
processed | str | [optional] | |
error | str | [optional] | |
is_hidden | bool | Is Hidden | [optional] [default to False] |
is_empty | bool | Is Empty | [optional] [default to False] |
from openapi_client.models.status_info import StatusInfo
# TODO update the JSON string below
json = "{}"
# create an instance of StatusInfo from a JSON string
status_info_instance = StatusInfo.from_json(json)
# print the JSON string representation of the object
print(StatusInfo.to_json())
# convert the object into a dict
status_info_dict = status_info_instance.to_dict()
# create an instance of StatusInfo from a dict
status_info_from_dict = StatusInfo.from_dict(status_info_dict)