/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * deleted conversation object
 */
export interface ConversationDeleted {
    /** The unique identifier for the conversation. */
    id?: string;
    /** always conversation */
    object?: "conversation";
    /** Whether the conversation is deleted or not. */
    deleted?: boolean;
}
