Source code for honeyhive._generated.models.DeleteExperimentRunResponse

from typing import *

from pydantic import BaseModel, Field


[docs] class DeleteExperimentRunResponse(BaseModel): """ DeleteExperimentRunResponse model """ model_config = {"populate_by_name": True, "validate_assignment": True} id: str = Field(validation_alias="id") deleted: bool = Field(validation_alias="deleted")