Type Alias $ClubStreamerPayload<ExtArgs>

$ClubStreamerPayload<ExtArgs>: {
    composites: {};
    name: "ClubStreamer";
    objects: {
        customMessages: $CSCustomMessagePayload<ExtArgs>[];
    };
    scalars: GetPayloadResult<{
        autoPublishIfAnnouncmentChannel: boolean | null;
        customCoolDownBeforeNextPost: number | null;
        dbId: string;
        guildId: string;
        lastPostAt: Date | null;
        lastPostId: string | null;
        notificationChannelId: string | null;
        pingRoleId: string | null;
        showNotifyButton: boolean | null;
        streamerUserName: string;
        usePerStreamerEmbeds: boolean | null;
    }, ExtArgs["result"]["clubStreamer"]>;
}

Type Parameters