from __future__ import annotations
from dataclasses import dataclass, field
from .abstract_geometry_type import AbstractGeometryType
from .aggregation_type import AggregationType

__NAMESPACE__ = "http://www.opengis.net/gml/3.2"


@dataclass(slots=True, kw_only=True)
class AbstractGeometricAggregateType(AbstractGeometryType):
    aggregation_type: None | AggregationType = field(
        default=None,
        metadata={
            "name": "aggregationType",
            "type": "Attribute",
        }
    )