Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 917 Bytes

PdfDocument.md

File metadata and controls

29 lines (20 loc) · 917 Bytes

PdfDocument

Properties

Name Type Description Notes
fields List[PdfDocumentField] List of document fields [optional]

Example

from formkiq_client.models.pdf_document import PdfDocument

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

# convert the object into a dict
pdf_document_dict = pdf_document_instance.to_dict()
# create an instance of PdfDocument from a dict
pdf_document_from_dict = PdfDocument.from_dict(pdf_document_dict)

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