Combined discovery response with all available resources.
| Name | Type | Description | Notes |
|---|---|---|---|
| extractors | List[ExtractorDiscovery] | Available feature extractors | [optional] |
| stages | List[StageDiscovery] | Available retriever stages | [optional] |
| manifest_schema | ManifestSchemaDiscovery | Manifest schema information | [optional] |
from mixpeek.models.discovery_response import DiscoveryResponse
# TODO update the JSON string below
json = "{}"
# create an instance of DiscoveryResponse from a JSON string
discovery_response_instance = DiscoveryResponse.from_json(json)
# print the JSON string representation of the object
print(DiscoveryResponse.to_json())
# convert the object into a dict
discovery_response_dict = discovery_response_instance.to_dict()
# create an instance of DiscoveryResponse from a dict
discovery_response_from_dict = DiscoveryResponse.from_dict(discovery_response_dict)