Skip to content

honeyhive._generated.models.DeleteExperimentRunResponse

DeleteExperimentRunResponse

Bases: BaseModel

DeleteExperimentRunResponse model Response for DELETE /runs/{run_id}

Source code in src/honeyhive/_generated/models/DeleteExperimentRunResponse.py
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class DeleteExperimentRunResponse(BaseModel):
    """
    DeleteExperimentRunResponse model
        Response for DELETE /runs/{run_id}
    """

    model_config = {
        "populate_by_name": True,
        "validate_assignment": True,
        "extra": "allow",
        "protected_namespaces": (),
    }

    id: str = Field(validation_alias="id")

    deleted: bool = Field(validation_alias="deleted")

id class-attribute instance-attribute

id: str = Field(validation_alias='id')

deleted class-attribute instance-attribute

deleted: bool = Field(validation_alias='deleted')