PdfMetadataInfo

Properties

NameTypeDescriptionNotes
titlestrDocument title[optional]
authorstrDocument author[optional]
subjectstrDocument subject[optional]
keywordsstrDocument keywords[optional]
creatorstrDocument creator[optional]
producerstrDocument producer[optional]
creation_datestrCreation date (ISO date string or {{variable}})[optional]
modification_datestrModification date (ISO date string or {{variable}})[optional]

Example

from pdf_generator_client.models.pdf_metadata_info import PdfMetadataInfo

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

# convert the object into a dict
pdf_metadata_info_dict = pdf_metadata_info_instance.to_dict()
# create an instance of PdfMetadataInfo from a dict
pdf_metadata_info_from_dict = PdfMetadataInfo.from_dict(pdf_metadata_info_dict)

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