Type Alias $WhatnotStreamerPayload<ExtArgs>

$WhatnotStreamerPayload<ExtArgs>: {
    composites: {};
    name: "WhatnotStreamer";
    objects: {
        customMessages: $WSCustomMessagePayload<ExtArgs>[];
        isCurrentlyLive: $WSCurrentlyLivePayload<ExtArgs> | null;
        statsChannelIds: $WSStatsChannelIdPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        autoPublishIfAnnouncmentChannel: boolean | null;
        customCoolDownBeforeNextLive: number | null;
        dbId: string;
        deleteEmbeds: boolean | null;
        guildId: string;
        lastLive: Date | null;
        liveRoleId: string | null;
        notificationChannelId: string | null;
        pingRoleId: string | null;
        sendOfflineMessage: boolean | null;
        showNotifyButton: boolean | null;
        streamerUserName: string;
        usePerStreamerEmbeds: boolean | null;
        usersForLiveRole: string[];
        usersWhoHaveLiveRole: string[];
    }, ExtArgs["result"]["whatnotStreamer"]>;
}

Type Parameters