UserNotificationsWhereInput: {
    AND?: UserNotificationsWhereInput | UserNotificationsWhereInput[];
    NOT?: UserNotificationsWhereInput | UserNotificationsWhereInput[];
    OR?: UserNotificationsWhereInput[];
    dbId?: StringFilter<"UserNotifications"> | string;
    isRead?: BoolFilter<"UserNotifications"> | boolean;
    list?: UserNotificationDataListRelationFilter;
    user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null;
    userId?: StringFilter<"UserNotifications"> | string;
}