8 lines
187 B
Python
8 lines
187 B
Python
![]() |
from pydantic import BaseModel, ConfigDict
|
||
|
|
||
|
|
||
|
class SelectClear(BaseModel):
|
||
|
"""The response from the `SelectClear` endpoint."""
|
||
|
|
||
|
model_config = ConfigDict(protected_namespaces=())
|