Class AbTestingResult
AbTestingResult model
Inherited Members
Namespace: Unity.Services.Matchmaker.Models
Assembly: Unity.Services.Multiplayer.dll
Syntax
[Preserve]
[DataContract(Name = "AbTestingResult")]
public class AbTestingResult
Constructors
AbTestingResult(bool, string, string, string)
Creates an instance of AbTestingResult.
Declaration
[Preserve]
public AbTestingResult(bool isAbTesting = false, 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
[Preserve]
[DataMember(Name = "basePoolId", EmitDefaultValue = false)]
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
[Preserve]
[DataMember(Name = "isAbTesting", EmitDefaultValue = true)]
public bool IsAbTesting { get; }
Property Value
| Type | Description |
|---|---|
| bool |
PoolId
The id of the pool the ticket was assigned to
Declaration
[Preserve]
[DataMember(Name = "poolId", EmitDefaultValue = false)]
public string PoolId { get; }
Property Value
| Type | Description |
|---|---|
| string |
VariantId
The id of the variant the ticket has been assigned to
Declaration
[Preserve]
[DataMember(Name = "variantId", EmitDefaultValue = false)]
public string VariantId { get; }
Property Value
| Type | Description |
|---|---|
| string |