from __future__ import annotations
from dataclasses import dataclass, field
from .location_structure_2 import LocationStructure2

__NAMESPACE__ = "http://www.netex.org.uk/netex"


@dataclass(slots=True, kw_only=True)
class BoundingBoxStructure2:
    class Meta:
        name = "BoundingBoxStructure"

    upper_left: LocationStructure2 = field(
        metadata={
            "name": "UpperLeft",
            "type": "Element",
            "namespace": "http://www.netex.org.uk/netex",
        }
    )
    lower_right: LocationStructure2 = field(
        metadata={
            "name": "LowerRight",
            "type": "Element",
            "namespace": "http://www.netex.org.uk/netex",
        }
    )