Skip to content

Latest commit

History

History
30 lines (21 loc) · 1018 Bytes

File metadata and controls

30 lines (21 loc) · 1018 Bytes

InlineObjectMeta

Properties

NameTypeDescriptionNotes
encodingstrDocument encoding[optional]
content_typestrDocument content type.[optional]

Example

frompdf_generator_api_client.models.inline_object_metaimportInlineObjectMeta# TODO update the JSON string belowjson="{}"# create an instance of InlineObjectMeta from a JSON stringinline_object_meta_instance=InlineObjectMeta.from_json(json)
# print the JSON string representation of the objectprint(InlineObjectMeta.to_json())
# convert the object into a dictinline_object_meta_dict=inline_object_meta_instance.to_dict()
# create an instance of InlineObjectMeta from a dictinline_object_meta_from_dict=InlineObjectMeta.from_dict(inline_object_meta_dict)

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