Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

File metadata and controls

32 lines (23 loc) · 1.17 KB

WatermarkBase64

Properties

Name Type Description Notes
file_base64 str PDF file from base64 string 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]

Example

from pdf_generator_api_client.models.watermark_base64 import WatermarkBase64

# TODO update the JSON string below
json = "{}"
# create an instance of WatermarkBase64 from a JSON string
watermark_base64_instance = WatermarkBase64.from_json(json)
# print the JSON string representation of the object
print(WatermarkBase64.to_json())

# convert the object into a dict
watermark_base64_dict = watermark_base64_instance.to_dict()
# create an instance of WatermarkBase64 from a dict
watermark_base64_from_dict = WatermarkBase64.from_dict(watermark_base64_dict)

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