| Name | Type | Description | Notes |
|---|---|---|---|
| content_url | str | URL to an image | |
| position | WatermarkPosition | [optional] [default to WatermarkPosition.CENTER] | |
| rotation | int | Watermark rotation | [optional] [default to 0] |
| scale | float | Watermark image scale | [optional] [default to 1] |
| content_base64 | str | Base64 image string |
frompdf_generator_api_client.models.watermark_imageimportWatermarkImage# TODO update the JSON string belowjson="{}"# create an instance of WatermarkImage from a JSON stringwatermark_image_instance=WatermarkImage.from_json(json)
# print the JSON string representation of the objectprint(WatermarkImage.to_json())
# convert the object into a dictwatermark_image_dict=watermark_image_instance.to_dict()
# create an instance of WatermarkImage from a dictwatermark_image_from_dict=WatermarkImage.from_dict(watermark_image_dict)