Skip to content

openfoodfacts_proxy.models.v3.attribute_groups_response

[docs] module openfoodfacts_proxy.models.v3.attribute_groups_response

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

from openfoodfacts_proxy.models.v3.response_status import V3ResponseStatus


class V3AttributeGroupsResponse(V3ResponseStatus):
    """Response model for GET /api/v3.4/attribute_groups."""

    attribute_groups: list[dict[str, Any]]