ResultSetBoundary Type
ResultSetBoundary Type documentation for Python SDK
Boundary marker for logical result sets in streaming memory retrieval
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| result_set_id | str | Unique identifier for this result set (UUID) | |
| kind | str | Type of boundary marker | |
| stage_name | str | Free-form label describing the pipeline stage | |
| expected_items | int | Hint 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