Name | Type | Description | Notes |
---|---|---|---|
page_details | PageDetails | [optional] | |
result | List[BehalfDocument] | [optional] |
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)