Esposter
    Preparing search index...

    Interface WebhookCreateMessageInput

    interface WebhookCreateMessageInput {
        appUser: PartialByKeys<
            Pick<
                {
                    createdAt: Date;
                    deletedAt: Date
                    | null;
                    id: string;
                    image: string | null;
                    name: string;
                    updatedAt: Date;
                },
                "name"
                | "id"
                | "image",
            >,
            "name" | "image",
        >;
        files?: { filename: string; id: string; mimetype: string; size: number }[];
        message?: string;
        replyRowKey?: string;
        roomId: string;
        type: Webhook;
    }

    Hierarchy

    Index

    Properties

    appUser: PartialByKeys<
        Pick<
            {
                createdAt: Date;
                deletedAt: Date
                | null;
                id: string;
                image: string | null;
                name: string;
                updatedAt: Date;
            },
            "name"
            | "id"
            | "image",
        >,
        "name" | "image",
    >
    files?: { filename: string; id: string; mimetype: string; size: number }[] = ...
    message?: string = ...
    replyRowKey?: string = ...
    roomId: string = selectRoomSchema.shape.id
    type: Webhook