Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

MetadataParam

Metadata object (optional)

Properties

NameTypeDescriptionNotes
authorstrDocument author[optional] [default to 'Organization name']
languagestrDocument language[optional] [default to 'en']

Example

frompdf_generator_api_client.models.metadata_paramimportMetadataParam# TODO update the JSON string belowjson="{}"# create an instance of MetadataParam from a JSON stringmetadata_param_instance=MetadataParam.from_json(json)
# print the JSON string representation of the objectprint(MetadataParam.to_json())
# convert the object into a dictmetadata_param_dict=metadata_param_instance.to_dict()
# create an instance of MetadataParam from a dictmetadata_param_from_dict=MetadataParam.from_dict(metadata_param_dict)

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