Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 881 Bytes

File metadata and controls

29 lines (20 loc) · 881 Bytes

OcrTableData

Properties

Name Type Description Notes
value str Table Value [optional]

Example

from formkiq_client.models.ocr_table_data import OcrTableData

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

# convert the object into a dict
ocr_table_data_dict = ocr_table_data_instance.to_dict()
# create an instance of OcrTableData from a dict
ocr_table_data_from_dict = OcrTableData.from_dict(ocr_table_data_dict)

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