GoodMem
ReferenceClient SDKsPython SDKTypes

ResultSetBoundary Type

ResultSetBoundary Type documentation for Python SDK

Boundary marker for logical result sets in streaming memory retrieval

Properties

NameTypeDescriptionNotes
result_set_idstrUnique identifier for this result set (UUID)
kindstrType of boundary marker
stage_namestrFree-form label describing the pipeline stage
expected_itemsintHint for progress tracking - expected number of items in this result set[optional]

Example

from goodmem_client.models.result_set_boundary import ResultSetBoundary

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

# convert the object into a dict
result_set_boundary_dict = result_set_boundary_instance.to_dict()
# create an instance of ResultSetBoundary from a dict
result_set_boundary_from_dict = ResultSetBoundary.from_dict(result_set_boundary_dict)

↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK

On this page