Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 862 Bytes

File metadata and controls

29 lines (21 loc) · 862 Bytes

Options

The document options.

Properties

Name Type Description Notes
watermark_on_draw WatermarkOnDraw [optional]

Example

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)

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