The document options.
| Name | Type | Description | Notes |
|---|---|---|---|
| watermark_on_draw | WatermarkOnDraw | [optional] |
from docspace_api_sdk.models.options import Options
# TODO update the JSON string below
json = "{}"
# create an instance of Options from a JSON string
options_instance = Options.from_json(json)
# print the JSON string representation of the object
print(Options.to_json())
# convert the object into a dict
options_dict = options_instance.to_dict()
# create an instance of Options from a dict
options_from_dict = Options.from_dict(options_dict)