Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.2 KB

File metadata and controls

33 lines (24 loc) · 1.2 KB

WatermarkImage

Properties

NameTypeDescriptionNotes
content_urlstrURL to an image
positionWatermarkPosition[optional] [default to WatermarkPosition.CENTER]
rotationintWatermark rotation[optional] [default to 0]
scalefloatWatermark image scale[optional] [default to 1]
content_base64strBase64 image string

Example

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)

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