Type Alias $RumbleStreamerPayload<ExtArgs>

$RumbleStreamerPayload<ExtArgs>: {
    composites: {};
    name: "RumbleStreamer";
    objects: {
        customMessages: $RSCustomMessagePayload<ExtArgs>[];
        isCurrentlyLive: $RSCurrentlyLivePayload<ExtArgs> | null;
        statsChannelIds: $RSStatsChannelIdPayload<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;
        type: $Enums.RumbleTypeEnum;
        usePerStreamerEmbeds: boolean | null;
        usersForLiveRole: string[];
        usersWhoHaveLiveRole: string[];
    }, ExtArgs["result"]["rumbleStreamer"]>;
}

Type Parameters