mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-29 15:18:11 +00:00
11 lines
437 B
TypeScript
11 lines
437 B
TypeScript
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;
|
|
}
|