2025-05-01 11:42:30 -07:00
|
|
|
from typing import List, Optional
|
2025-04-10 20:13:22 -07:00
|
|
|
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
|
|
|
|
class BooleanIntersection(BaseModel):
|
|
|
|
"""The response from the 'BooleanIntersection'."""
|
|
|
|
|
2025-05-01 11:42:30 -07:00
|
|
|
extra_solid_ids: Optional[List[str]] = None
|
2025-04-10 20:13:22 -07:00
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|