Type Alias $WSCustomMessagePayload<ExtArgs>

$WSCustomMessagePayload<ExtArgs>: {
    composites: {};
    name: "WSCustomMessage";
    objects: {
        buttons: $WSMessageButtonPayload<ExtArgs>[];
        embed: $WSMessageEmbedPayload<ExtArgs> | null;
        webhook: $WSMessageWebhookPayload<ExtArgs> | null;
        whatnotStreamer: $WhatnotStreamerPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        content: string | null;
        dbId: string;
        showInviteButton: boolean | null;
        showWatchButton: boolean | null;
        type: StreamerMessageTypeEnum;
        whatnotStreamerId: string;
    }, ExtArgs["result"]["wSCustomMessage"]>;
}

Type Parameters