Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

File metadata and controls

33 lines (24 loc) · 1.27 KB

MakeAccessibleUrl

Properties

Name Type Description Notes
file_url str Public URL to a PDF document
options List[AccessibilityOption] Accessibility processing options [optional]
name str Name for the PDF file [optional]
output str Returned document output format [optional] [default to 'base64']
metadata MetadataParam [optional]

Example

from pdf_generator_api_client.models.make_accessible_url import MakeAccessibleUrl

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

# convert the object into a dict
make_accessible_url_dict = make_accessible_url_instance.to_dict()
# create an instance of MakeAccessibleUrl from a dict
make_accessible_url_from_dict = MakeAccessibleUrl.from_dict(make_accessible_url_dict)

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