Skip to content

openfoodfacts_proxy.models.v3.taxonomy_suggestions_response

[docs] module openfoodfacts_proxy.models.v3.taxonomy_suggestions_response

1
2
3
4
5
6
7
8
from openfoodfacts_proxy.models.v3.response_status import V3ResponseStatus


class V3TaxonomySuggestionsResponse(V3ResponseStatus):
    """Response model for GET /api/v3/taxonomy_suggestions."""

    suggestions: list[str]
    matched_synonyms: dict[str, str] | None = None