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

EncryptAndDecryptUrl

Properties

NameTypeDescriptionNotes
file_urlstrPublic URL to a PDF document
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_urlimportEncryptAndDecryptUrl# TODO update the JSON string belowjson="{}"# create an instance of EncryptAndDecryptUrl from a JSON stringencrypt_and_decrypt_url_instance=EncryptAndDecryptUrl.from_json(json)
# print the JSON string representation of the objectprint(EncryptAndDecryptUrl.to_json())
# convert the object into a dictencrypt_and_decrypt_url_dict=encrypt_and_decrypt_url_instance.to_dict()
# create an instance of EncryptAndDecryptUrl from a dictencrypt_and_decrypt_url_from_dict=EncryptAndDecryptUrl.from_dict(encrypt_and_decrypt_url_dict)

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