Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.22 KB

File metadata and controls

36 lines (27 loc) · 1.22 KB

HTMLFile

HTML File

Properties

Name Type Description Notes
legislation_text_id int unique identifier of LegislationText [optional]
text_format_id int unique identifier of TextFormat [optional]
text_format str Text Format (e.g. PDF) [optional]
file_url str Azure Blob Storage URL [optional]
reference_number str Reference Number [optional]
session_id int internal SessionID [optional]
description str Description [optional]

Example

from valis.models.html_file import HTMLFile

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

# convert the object into a dict
html_file_dict = html_file_instance.to_dict()
# create an instance of HTMLFile from a dict
html_file_from_dict = HTMLFile.from_dict(html_file_dict)

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