Esposter
    Preparing search index...

    Interface WebhookCreateMessageInput

    interface WebhookCreateMessageInput {
        appUser: { id: string; image?: string; name?: string };
        files?: {
            filename: string;
            hasThumbnail: boolean;
            id: string;
            mimetype: string;
            size: number;
        }[];
        message?: string;
        replyRowKey?: string;
        roomId: string;
        type: Webhook;
    }

    Hierarchy

    Index
    appUser: { id: string; image?: string; name?: string }
    files?: {
        filename: string;
        hasThumbnail: boolean;
        id: string;
        mimetype: string;
        size: number;
    }[] = ...
    message?: string = ...
    replyRowKey?: string = ...
    roomId: string = selectRoomInMessageSchema.shape.id
    type: Webhook