Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1015 Bytes

File metadata and controls

30 lines (21 loc) · 1015 Bytes

FormFieldsUrl

Properties

Name Type Description Notes
file_url str Public URL to a PDF document
key_field KeyFieldParam [optional] [default to KeyFieldParam.NAME]

Example

from pdf_generator_api_client.models.form_fields_url import FormFieldsUrl

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

# convert the object into a dict
form_fields_url_dict = form_fields_url_instance.to_dict()
# create an instance of FormFieldsUrl from a dict
form_fields_url_from_dict = FormFieldsUrl.from_dict(form_fields_url_dict)

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