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