Accessing Scripts with namespaces

I am using the Soomla plugin to incorporate in app purchases.

The problem all the scripts are using namespaces such as

namespace com.soomla.unity.example 

and

namespace com.soomla.unity

When I try to access these classes from one of my own script unity throws the error

“The type or namespace ______ could not be found…”

How can I use these classes…I don’t want to go through all the scripts (there are a few) and delete the namespaces.

Figured it out.

I simply put using Com.soomla.unity.example and using com.soomla.unity at the top of my script