| Name | Type | Description | Notes |
|---|
| public_id | str | Document unique identifier | [optional] |
| public_url | str | Public URL of the document | [optional] |
| template_id | int | Template used to generate the document | [optional] |
| created_at | str | Date time when the document was generated | [optional] |
| expires_at | str | Date time when the document url will expire. Document is stored for 30 days. | [optional] |
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]