Skip to content

openfoodfacts_proxy.models.v3.product_response

[docs] module openfoodfacts_proxy.models.v3.product_response

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
from typing import Any

from openfoodfacts_proxy.models.v3.response_status import V3ResponseStatus


class V3ProductResponse(V3ResponseStatus):
    """Response model for GET /api/v3/product/{code}."""

    code: str
    product: dict[str, Any]