Type Alias $YoutubeStreamerPayload<ExtArgs>

$YoutubeStreamerPayload<ExtArgs>: {
    composites: {};
    name: "YoutubeStreamer";
    objects: {
        customMessages: $YTSCustomMessagePayload<ExtArgs>[];
        isCurrentlyLive: $YTSCurrentlyLivePayload<ExtArgs> | null;
        statsChannelIds: $YTSStatsChannelIdPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        autoPublishIfAnnouncmentChannel: boolean | null;
        customCoolDownBeforeNextLive: number | null;
        dbId: string;
        deleteEmbeds: boolean | null;
        guildId: string;
        lastLive: Date | null;
        lastVideo: Date | null;
        liveNotificationChannelId: string | null;
        liveRoleId: string | null;
        pingRoleId: string | null;
        sendOfflineMessage: boolean | null;
        showNotifyButton: boolean | null;
        streamerId: string | null;
        streamerUserName: string;
        usePerStreamerEmbeds: boolean | null;
        usersForLiveRole: string[];
        usersWhoHaveLiveRole: string[];
        videoNotificationChannelId: string | null;
    }, ExtArgs["result"]["youtubeStreamer"]>;
}

Type Parameters