Type Alias $KickStreamerPayload<ExtArgs>

$KickStreamerPayload<ExtArgs>: {
    composites: {};
    name: "KickStreamer";
    objects: {
        customMessages: $KSCustomMessagePayload<ExtArgs>[];
        giftedSubRoles: $KSGiftedSubRolePayload<ExtArgs>[];
        isCurrentlyLive: $KSCurrentlyLivePayload<ExtArgs> | null;
        leaderBoardSyncRoles: $KSLeaderBoardSyncRolePayload<ExtArgs>[];
        statsChannelIds: $KSStatsChannelIdPayload<ExtArgs> | null;
        usersWhoHaveRole: $KSRoleWithUsersPayload<ExtArgs>[];
    };
    scalars: GetPayloadResult<{
        auditLogsChannelId: string | null;
        auditLogsEnabled: boolean | null;
        autoPublishIfAnnouncmentChannel: boolean | null;
        builtInClipsChannelId: string | null;
        builtInClipsEnabled: boolean | null;
        builtInClipsPingRoleId: string | null;
        chatRoomId: string | null;
        clipChannelId: string | null;
        clipEnabled: boolean | null;
        clipPingRoleId: string | null;
        clipperCategories: $Enums.ClipperCategoryEnum[];
        clipperNeedsAllCategories: boolean | null;
        customCoolDownBeforeNextLive: number | null;
        dbId: string;
        deleteEmbeds: boolean | null;
        enableVodDownloading: boolean | null;
        founderRoleId: string | null;
        guildId: string;
        leaderBoardChannelId: string | null;
        leaderBoardMessageId: string | null;
        leaderBoardTypes: LeaderBoardTypesEnum[];
        liveRoleId: string | null;
        moderatorRoleId: string | null;
        notificationChannelId: string | null;
        ogRoleId: string | null;
        pingRoleId: string | null;
        sendOfflineMessage: boolean | null;
        showNotifyButton: boolean | null;
        streamerId: string | null;
        streamerUserName: string;
        subscriberRoleId: string | null;
        usePerStreamerEmbeds: boolean | null;
        usersForLiveRole: string[];
        usersWhoHaveLiveRole: string[];
        verifiedRoleId: string | null;
        vipRoleId: string | null;
        vodsChannelId: string | null;
        vodsPingRoleId: string | null;
    }, ExtArgs["result"]["kickStreamer"]>;
}

Type Parameters