Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.36 KB

File metadata and controls

33 lines (24 loc) · 1.36 KB

EncryptAndDecryptBase64

Properties

NameTypeDescriptionNotes
file_base64strPDF document in base64 encoded string format
owner_passwordstrAn owner password to open the encrypted document
user_passwordstrAn user password to open the encrypted document[optional]
namestrName for the PDF file[optional]
outputstrReturned document output format[optional] [default to 'base64']

Example

frompdf_generator_api_client.models.encrypt_and_decrypt_base64importEncryptAndDecryptBase64# TODO update the JSON string belowjson="{}"# create an instance of EncryptAndDecryptBase64 from a JSON stringencrypt_and_decrypt_base64_instance=EncryptAndDecryptBase64.from_json(json)
# print the JSON string representation of the objectprint(EncryptAndDecryptBase64.to_json())
# convert the object into a dictencrypt_and_decrypt_base64_dict=encrypt_and_decrypt_base64_instance.to_dict()
# create an instance of EncryptAndDecryptBase64 from a dictencrypt_and_decrypt_base64_from_dict=EncryptAndDecryptBase64.from_dict(encrypt_and_decrypt_base64_dict)

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