main
 1# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
 2
 3from typing_extensions import Literal
 4
 5from .._models import BaseModel
 6
 7__all__ = ["VideoDeleteResponse"]
 8
 9
10class VideoDeleteResponse(BaseModel):
11    id: str
12    """Identifier of the deleted video."""
13
14    deleted: bool
15    """Indicates that the video resource was deleted."""
16
17    object: Literal["video.deleted"]
18    """The object type that signals the deletion response."""