Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

BehalfDocumentRecords.md

File metadata and controls

30 lines (21 loc) · 1.06 KB

BehalfDocumentRecords

Properties

Name Type Description Notes
page_details PageDetails [optional]
result List[BehalfDocument] [optional]

Example

from boldsign.models.behalf_document_records import BehalfDocumentRecords

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

# convert the object into a dict
behalf_document_records_dict = behalf_document_records_instance.to_dict()
# create an instance of BehalfDocumentRecords from a dict
behalf_document_records_from_dict = BehalfDocumentRecords.from_dict(behalf_document_records_dict)

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