import { StartSupportConversationDto as IStartSupportConversationDto } from "@edr/types"; import { ApiProperty } from "@nestjs/swagger"; import { IsUUID } from "class-validator"; /** Agent opens the thread with a company before sending the first message. */ export class StartConversationDto implements IStartSupportConversationDto { @ApiProperty({ description: "Customer company to chat with." }) @IsUUID() companyId!: string; }