Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.15 KB

File metadata and controls

34 lines (25 loc) · 1.15 KB

Watermark

Properties

Name Type Description Notes
font_size float Watermark Font Size [optional]
text str Watermark text [optional]
rotation float Watermark Rotation [optional]
image_document_id str Watermark Image Document Id [optional]
scale WatermarkScale [optional]
position WatermarkPosition [optional]

Example

from formkiq_client.models.watermark import Watermark

# TODO update the JSON string below
json = "{}"
# create an instance of Watermark from a JSON string
watermark_instance = Watermark.from_json(json)
# print the JSON string representation of the object
print(Watermark.to_json())

# convert the object into a dict
watermark_dict = watermark_instance.to_dict()
# create an instance of Watermark from a dict
watermark_from_dict = Watermark.from_dict(watermark_dict)

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