Modification date (ISO date string or {{variable}})
[optional]
Example
from pdf_generator_client.models.pdf_metadata_info import PdfMetadataInfo
# TODO update the JSON string belowjson ="{}"# create an instance of PdfMetadataInfo from a JSON stringpdf_metadata_info_instance = PdfMetadataInfo.from_json(json)# print the JSON string representation of the objectprint(PdfMetadataInfo.to_json())# convert the object into a dictpdf_metadata_info_dict = pdf_metadata_info_instance.to_dict()# create an instance of PdfMetadataInfo from a dictpdf_metadata_info_from_dict = PdfMetadataInfo.from_dict(pdf_metadata_info_dict)