Response schema for listing batch search details.
| Name | Type | Description | Notes |
|---|---|---|---|
| record_set_count | int | The count of records in the result set. | [optional] |
| next_link | str | Next Link | [optional] |
| value | List[BatchSearch] | List of batch search records. | [optional] |
from Avalara.SDK.models.EInvoicing.V1.batch_search_list_response import BatchSearchListResponse
# TODO update the JSON string below
json = "{}"
# create an instance of BatchSearchListResponse from a JSON string
batch_search_list_response_instance = BatchSearchListResponse.from_json(json)
# print the JSON string representation of the object
print(BatchSearchListResponse.to_json())
# convert the object into a dict
batch_search_list_response_dict = batch_search_list_response_instance.to_dict()
# create an instance of BatchSearchListResponse from a dict
batch_search_list_response_from_dict = BatchSearchListResponse.from_dict(batch_search_list_response_dict)