Deadline Functions: Scripting

In Deadline Scripting-Reference all the available functions are broken down by function "groups’ such as:
StringUtils.function
FileUtils.function
PathUtils.function
DirectoryUtils.function
FrameUtils.function
ProcessUtils.function
SystemUtils.function
ClientUtils.function
RepositoryUtils.function
ScriptUtils.function

The question is how to import those function modules(groups) into the script while defining a custom Deadline plugin?
An approach of trying to use from Deadline.StringUtils import * is not working.
Thanks in advance!

Hello,
This will make all the Deadline Scripting functions available:

from Deadline.Scripting import *

Hey Mike,

Thanks for helping out with that answer!

Cheers,