from pdf_generator_client.models.pdf_metadata_xmp import PdfMetadataXmp
# TODO update the JSON string belowjson ="{}"# create an instance of PdfMetadataXmp from a JSON stringpdf_metadata_xmp_instance = PdfMetadataXmp.from_json(json)# print the JSON string representation of the objectprint(PdfMetadataXmp.to_json())# convert the object into a dictpdf_metadata_xmp_dict = pdf_metadata_xmp_instance.to_dict()# create an instance of PdfMetadataXmp from a dictpdf_metadata_xmp_from_dict = PdfMetadataXmp.from_dict(pdf_metadata_xmp_dict)