Type Alias $TiktokStreamerPayload<ExtArgs>

$TiktokStreamerPayload<ExtArgs>: {
    composites: {};
    name: "TiktokStreamer";
    objects: {
        customMessages: $TTSCustomMessagePayload<ExtArgs>[];
        isCurrentlyLive: $TTSCurrentlyLivePayload<ExtArgs> | null;
        statsChannelIds: $TTSStatsChannelIdPayload<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;
        streamerUserName: string;
        usePerStreamerEmbeds: boolean | null;
        usersForLiveRole: string[];
        usersWhoHaveLiveRole: string[];
        videoNotificationChannelId: string | null;
    }, ExtArgs["result"]["tiktokStreamer"]>;
}

Type Parameters