Type Alias $TwitterStreamerPayload<ExtArgs>

$TwitterStreamerPayload<ExtArgs>: {
    composites: {};
    name: "TwitterStreamer";
    objects: {
        customMessages: $TWSCustomMessagePayload<ExtArgs>[];
        isCurrentlyLive: $TWSCurrentlyLivePayload<ExtArgs> | null;
        statsChannelIds: $TWSStatsChannelIdPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        autoPublishIfAnnouncmentChannel: boolean | null;
        currentBroadcastId: string | null;
        customCoolDownBeforeNextLive: number | null;
        customCoolDownBeforeNextPost: number | null;
        dbId: string;
        deleteEmbeds: boolean | null;
        guildId: string;
        lastLive: Date | null;
        lastPostAt: Date | null;
        lastPostId: string | null;
        liveNotificationChannelId: string | null;
        liveRoleId: string | null;
        offlineGracePeriod: number | null;
        pingRoleId: string | null;
        postNotificationChannelId: string | null;
        postPingRoleId: string | null;
        sendOfflineMessage: boolean | null;
        showNotifyButton: boolean | null;
        streamerId: string | null;
        streamerUserName: string;
        usePerStreamerEmbeds: boolean | null;
        usersForLiveRole: string[];
        usersWhoHaveLiveRole: string[];
    }, ExtArgs["result"]["twitterStreamer"]>;
}

Type Parameters