ExperimentType
enum ExperimentType {}
                This enumerated type is used to indicate the type of experiment that the ApptimizeTestInfo class refers to.
- 
                  
                  
The experiment type is a code block.
Declaration
Objective-C
ExperimentTypeCodeBlockSwift
case codeBlock = 0 - 
                  
                  
The experiment type is a feature flag.
Declaration
Objective-C
ExperimentTypeFeatureFlagSwift
case featureFlag = 1 - 
                  
                  
The experiment type is a dynamic variable.
Declaration
Objective-C
ExperimentTypeDynamicVariablesSwift
case dynamicVariables = 2 - 
                  
                  
The experiment is visual.
Note
Only available on iOS or tvOSDeclaration
Objective-C
ExperimentTypeVisualSwift
case visual = 3 - 
                  
                  
The experiment type is unknown.
Declaration
Objective-C
ExperimentTypeUnknownSwift
case unknown = 4 - 
                  
                  
The experiment type is a feature variable.
Declaration
Objective-C
ExperimentTypeFeatureVariablesSwift
case featureVariables = 5 
        
        ExperimentType Enumeration Reference