@@ -339,9 +339,9 @@ open class OptimizelyClient: NSObject {
339
339
/// Set forced variation for experiment and user ID to variationKey.
340
340
///
341
341
/// - Parameters:
342
- /// - experimentKey The key for the experiment.
343
- /// - userId The user ID to be used for bucketing.
344
- /// - variationKey The variation the user should be forced into.
342
+ /// - experimentKey: The key for the experiment.
343
+ /// - userId: The user ID to be used for bucketing.
344
+ /// - variationKey: The variation the user should be forced into.
345
345
/// This value can be nil, in which case, the forced variation is cleared.
346
346
/// - Returns: true if forced variation set successfully
347
347
public func setForcedVariation( experimentKey: String ,
@@ -358,9 +358,9 @@ open class OptimizelyClient: NSObject {
358
358
/// Determine whether a feature is enabled.
359
359
///
360
360
/// - Parameters:
361
- /// - featureKey The key for the feature flag.
362
- /// - userId The user ID to be used for bucketing.
363
- /// - attributes The user's attributes.
361
+ /// - featureKey: The key for the feature flag.
362
+ /// - userId: The user ID to be used for bucketing.
363
+ /// - attributes: The user's attributes.
364
364
/// - Returns: true if feature is enabled, false otherwise.
365
365
/// - Throws: `OptimizelyError` if feature parameter is not valid
366
366
public func isFeatureEnabled( featureKey: String ,
@@ -425,10 +425,10 @@ open class OptimizelyClient: NSObject {
425
425
/// Gets boolean feature variable value.
426
426
///
427
427
/// - Parameters:
428
- /// - featureKey The key for the feature flag.
429
- /// - variableKey The key for the variable.
430
- /// - userId The user ID to be used for bucketing.
431
- /// - attributes The user's attributes.
428
+ /// - featureKey: The key for the feature flag.
429
+ /// - variableKey: The key for the variable.
430
+ /// - userId: The user ID to be used for bucketing.
431
+ /// - attributes: The user's attributes.
432
432
/// - Returns: feature variable value of type boolean.
433
433
/// - Throws: `OptimizelyError` if feature parameter is not valid
434
434
public func getFeatureVariableBoolean( featureKey: String ,
@@ -445,10 +445,10 @@ open class OptimizelyClient: NSObject {
445
445
/// Gets double feature variable value.
446
446
///
447
447
/// - Parameters:
448
- /// - featureKey The key for the feature flag.
449
- /// - variableKey The key for the variable.
450
- /// - userId The user ID to be used for bucketing.
451
- /// - attributes The user's attributes.
448
+ /// - featureKey: The key for the feature flag.
449
+ /// - variableKey: The key for the variable.
450
+ /// - userId: The user ID to be used for bucketing.
451
+ /// - attributes: The user's attributes.
452
452
/// - Returns: feature variable value of type double.
453
453
/// - Throws: `OptimizelyError` if feature parameter is not valid
454
454
public func getFeatureVariableDouble( featureKey: String ,
@@ -465,10 +465,10 @@ open class OptimizelyClient: NSObject {
465
465
/// Gets integer feature variable value.
466
466
///
467
467
/// - Parameters:
468
- /// - featureKey The key for the feature flag.
469
- /// - variableKey The key for the variable.
470
- /// - userId The user ID to be used for bucketing.
471
- /// - attributes The user's attributes.
468
+ /// - featureKey: The key for the feature flag.
469
+ /// - variableKey: The key for the variable.
470
+ /// - userId: The user ID to be used for bucketing.
471
+ /// - attributes: The user's attributes.
472
472
/// - Returns: feature variable value of type integer.
473
473
/// - Throws: `OptimizelyError` if feature parameter is not valid
474
474
public func getFeatureVariableInteger( featureKey: String ,
@@ -485,10 +485,10 @@ open class OptimizelyClient: NSObject {
485
485
/// Gets string feature variable value.
486
486
///
487
487
/// - Parameters:
488
- /// - featureKey The key for the feature flag.
489
- /// - variableKey The key for the variable.
490
- /// - userId The user ID to be used for bucketing.
491
- /// - attributes The user's attributes.
488
+ /// - featureKey: The key for the feature flag.
489
+ /// - variableKey: The key for the variable.
490
+ /// - userId: The user ID to be used for bucketing.
491
+ /// - attributes: The user's attributes.
492
492
/// - Returns: feature variable value of type string.
493
493
/// - Throws: `OptimizelyError` if feature parameter is not valid
494
494
public func getFeatureVariableString( featureKey: String ,
0 commit comments