fleet-memory/hindsight-clients/python/hindsight_client_api/docs/ReflectIncludeOptions.md
2025-11-27 16:22:16 +01:00

1.2 KiB

ReflectIncludeOptions

Options for including additional data in reflect results.

Properties

Name Type Description Notes
facts object Options for including facts (based_on) in reflect results. [optional]
entities EntityIncludeOptions [optional]

Example

from hindsight_client_api.models.reflect_include_options import ReflectIncludeOptions

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

# convert the object into a dict
reflect_include_options_dict = reflect_include_options_instance.to_dict()
# create an instance of ReflectIncludeOptions from a dict
reflect_include_options_from_dict = ReflectIncludeOptions.from_dict(reflect_include_options_dict)

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