Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.3 KB

File metadata and controls

33 lines (24 loc) · 1.3 KB

AddWatermarkRequest

Properties

NameTypeDescriptionNotes
file_urlstrPDF file from remote URL to add the watermark to
watermarkWatermarkFileUrlWatermark
outputstrReturned document output[optional] [default to 'base64']
namestrFile name of the returned document[optional]
file_base64strPDF file from base64 string to add the watermark to

Example

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)

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