Name |
Type |
Description |
Notes |
key |
str |
Ocr Key |
[optional] |
values |
List[str] |
|
[optional] |
from formkiq_client.models.ocr_key_values import OcrKeyValues
# TODO update the JSON string below
json = "{}"
# create an instance of OcrKeyValues from a JSON string
ocr_key_values_instance = OcrKeyValues.from_json(json)
# print the JSON string representation of the object
print(OcrKeyValues.to_json())
# convert the object into a dict
ocr_key_values_dict = ocr_key_values_instance.to_dict()
# create an instance of OcrKeyValues from a dict
ocr_key_values_from_dict = OcrKeyValues.from_dict(ocr_key_values_dict)
[Back to Model list] [Back to API list] [Back to README]