| Name | Type | Description | Notes |
|---|---|---|---|
| file_url | str | PDF file from remote URL to add the watermark to | |
| watermark | WatermarkFileUrlWatermark | ||
| output | str | Returned document output | [optional] [default to 'base64'] |
| name | str | File name of the returned document | [optional] |
| file_base64 | str | PDF file from base64 string to add the watermark to |
frompdf_generator_api_client.models.add_watermark_requestimportAddWatermarkRequest# TODO update the JSON string belowjson="{}"# create an instance of AddWatermarkRequest from a JSON stringadd_watermark_request_instance=AddWatermarkRequest.from_json(json)
# print the JSON string representation of the objectprint(AddWatermarkRequest.to_json())
# convert the object into a dictadd_watermark_request_dict=add_watermark_request_instance.to_dict()
# create an instance of AddWatermarkRequest from a dictadd_watermark_request_from_dict=AddWatermarkRequest.from_dict(add_watermark_request_dict)