2024-09-23 09:39:00 -04:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
|
2024-10-02 13:36:23 -07:00
|
|
|
class DisableDryRun(BaseModel):
|
|
|
|
"""The response from the `DisableDryRun` endpoint."""
|
2024-09-23 09:39:00 -04:00
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|