Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.17 KB

File metadata and controls

33 lines (24 loc) · 1.17 KB

Document

Properties

NameTypeDescriptionNotes
public_idstrDocument unique identifier[optional]
public_urlstrPublic URL of the document[optional]
template_idintTemplate used to generate the document[optional]
created_atstrDate time when the document was generated[optional]
expires_atstrDate time when the document url will expire. Document is stored for 30 days.[optional]

Example

frompdf_generator_api_client.models.documentimportDocument# TODO update the JSON string belowjson="{}"# create an instance of Document from a JSON stringdocument_instance=Document.from_json(json)
# print the JSON string representation of the objectprint(Document.to_json())
# convert the object into a dictdocument_dict=document_instance.to_dict()
# create an instance of Document from a dictdocument_from_dict=Document.from_dict(document_dict)

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