interface CreateMessageDto {
    category: string;
    content: string;
    priority?: string;
    publications?: {
        since?: number;
        until?: number;
    };
    senderId?: string;
    senderType: string;
    shouldSendMail?: boolean;
    title: string;
    topicId: string;
    typeId: string;
}

Hierarchy

  • WithCustomFields
    • CreateMessageDto

Properties

category: string
content: string
priority?: string
publications?: {
    since?: number;
    until?: number;
}

Type declaration

  • Optional since?: number
  • Optional until?: number
senderId?: string
senderType: string
shouldSendMail?: boolean
title: string
topicId: string
typeId: string

Generated using TypeDoc