Type alias CalendarEventCommentPayload

CalendarEventCommentPayload: {
    calendarEventId: number;
    channelId: string;
    content: string;
    createdAt: string;
    createdBy: string;
    id: number;
    mentions?: MentionsPayload;
    updatedAt?: string;
}

Type declaration

  • calendarEventId: number

    The ID of the calendar event

  • channelId: string

    The ID of the channel

  • content: string

    The content of the calendar event comment

  • createdAt: string

    The ISO 8601 timestamp that the calendar event comment was created at

  • createdBy: string

    The ID of the user who created this calendar event comment (Note: If this event has createdByWebhookId present, this field will still be populated, but can be ignored. In this case, the value of this field will always be Ann6LewA)

  • id: number

    The ID of the calendar event comment

  • Optional mentions?: MentionsPayload
  • Optional updatedAt?: string

    The ISO 8601 timestamp that the calendar event comment was updated at, if relevant

Generated using TypeDoc