| Name | Type | Description | Notes |
|---|---|---|---|
| response | str | Base64 encoded document if the output=base64 is used or URL to the document when the output=url is used. | [optional] |
| meta | InlineObject9Meta | [optional] |
from pdf_generator_api_client.models.inline_object9 import InlineObject9
# TODO update the JSON string below
json = "{}"
# create an instance of InlineObject9 from a JSON string
inline_object9_instance = InlineObject9.from_json(json)
# print the JSON string representation of the object
print(InlineObject9.to_json())
# convert the object into a dict
inline_object9_dict = inline_object9_instance.to_dict()
# create an instance of InlineObject9 from a dict
inline_object9_from_dict = InlineObject9.from_dict(inline_object9_dict)