Skip to content

honeyhive._generated.models.RemoveDatapointResponse

RemoveDatapointResponse

Bases: BaseModel

RemoveDatapointResponse model Response for DELETE /datasets/{dataset_id}/datapoints/{datapoint_id}

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

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

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

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

dereferenced class-attribute instance-attribute

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

message class-attribute instance-attribute

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