| Name | Type | Description | Notes |
|---|
| content | str | Watermark text | |
| color | str | Watermark text color in hexadecimal format | [optional] [default to '#000000'] |
| size | int | Watermark text font size in px | [optional] [default to 48] |
| opacity | float | Watermark text opaxity | [optional] [default to 0.5] |
| position | WatermarkPosition | | [optional] [default to WatermarkPosition.CENTER] |
| rotation | int | Watermark rotation | [optional] [default to 0] |
frompdf_generator_api_client.models.watermark_textimportWatermarkText# TODO update the JSON string belowjson="{}"# create an instance of WatermarkText from a JSON stringwatermark_text_instance=WatermarkText.from_json(json)
# print the JSON string representation of the objectprint(WatermarkText.to_json())
# convert the object into a dictwatermark_text_dict=watermark_text_instance.to_dict()
# create an instance of WatermarkText from a dictwatermark_text_from_dict=WatermarkText.from_dict(watermark_text_dict)[Back to Model list][Back to API list][Back to README]