Type Alias $GuildClipForwardPayload<ExtArgs>

$GuildClipForwardPayload<ExtArgs>: {
    composites: {};
    name: "GuildClipForward";
    objects: {
        customMessages: $CFCustomMessagePayload<ExtArgs>[];
    };
    scalars: GetPayloadResult<{
        allowMature: boolean | null;
        blacklistCategories: string[];
        blacklistClippers: string[];
        channelId: string | null;
        clipForwardId: string;
        dbId: string;
        guildId: string;
        includeOffline: boolean | null;
        lastClipAt: Date | null;
        lastClipId: string | null;
        maxPerCycle: number | null;
        minDuration: number | null;
        minViews: number | null;
        pingRoleId: string | null;
        platform: PlatformEnum;
        showNotifyButton: boolean | null;
        streamerUserName: string;
        usePerStreamerEmbeds: boolean | null;
        whitelistCategories: string[];
        whitelistClippers: string[];
    }, ExtArgs["result"]["guildClipForward"]>;
}

Type Parameters