Source

@objc
public enum Source : Int

Represents the source from which a configuration was loaded.

This enum tracks whether the configuration was created programmatically via code or loaded from a configuration file. Surfaced publicly via MoEngageInitResult.configSource (the per-API success Result returned by MoEngageInitializeSDKTask).

  • Configuration created programmatically through code

    Declaration

    Swift

    case code
  • Configuration loaded from a file (typically Info.plist)

    Declaration

    Swift

    case file