Class AbTestingResult
AbTestingResult model
Inheritance
object
AbTestingResult
Namespace: Unity.Services.Matchmaker.Models
Assembly: solution.dll
Syntax
public class AbTestingResult
Constructors
AbTestingResult(bool, string, string, string)
Creates an instance of AbTestingResult.
Declaration
public AbTestingResult(bool isAbTesting = null, string variantId = null, string poolId = null, string basePoolId = null)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | isAbTesting | Flag indicating if the ticket is part of an AB testing and is uses an override setup in Player Engagement |
| string | variantId | The id of the variant the ticket has been assigned to |
| string | poolId | The id of the pool the ticket was assigned to |
| string | basePoolId | The id of the base pool attached to the ticket |
Properties
BasePoolId
The id of the base pool attached to the ticket
Declaration
public string BasePoolId { get; }
Property Value
| Type | Description |
|---|---|
| string |
IsAbTesting
Flag indicating if the ticket is part of an AB testing and is uses an override setup in Player Engagement
Declaration
public bool IsAbTesting { get; }
Property Value
| Type | Description |
|---|---|
| bool |
PoolId
The id of the pool the ticket was assigned to
Declaration
public string PoolId { get; }
Property Value
| Type | Description |
|---|---|
| string |
VariantId
The id of the variant the ticket has been assigned to
Declaration
public string VariantId { get; }
Property Value
| Type | Description |
|---|---|
| string |