Type Alias $UserBirthdayPayload<ExtArgs>

$UserBirthdayPayload<ExtArgs>: {
    composites: {};
    name: "UserBirthday";
    objects: {
        user: $UserPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        date: string | null;
        dbId: string;
        lastChanged: Date | null;
        lastYearCongratulated: number | null;
        userId: string;
        whereToCongratulate: string[];
    }, ExtArgs["result"]["userBirthday"]>;
}

Type Parameters