BasicModule Protocol Reference
public protocol BasicModule : Module
A restricted Module that can be created with some default parameters and only allows a single instance.
-
Initializes the module with a
TealiumContextand this module’s specific configuration.Declaration
Swift
init?(context: TealiumContext, moduleConfiguration: DataObject)Parameter Description contextThe
TealiumContextshared among all the modulesmoduleConfigurationThe
DataObjectcontaining the configuration for this specific module. It should be empty if the module uses no configuration.