Type Alias $TwitchStreamerPayload<ExtArgs>

$TwitchStreamerPayload<ExtArgs>: {
    composites: {};
    name: "TwitchStreamer";
    objects: {
        customMessages: $TSCustomMessagePayload<ExtArgs>[];
        isCurrentlyLive: $TSCurrentlyLivePayload<ExtArgs> | null;
        statsChannelIds: $TSStatsChannelIdPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        autoPublishIfAnnouncmentChannel: boolean | null;
        chatRoomId: string | 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;
        streamerId: string | null;
        streamerUserName: string;
        usePerStreamerEmbeds: boolean | null;
        usersForLiveRole: string[];
        usersWhoHaveLiveRole: string[];
    }, ExtArgs["result"]["twitchStreamer"]>;
}

Type Parameters