UNPKG
cordova-plugin-qonversion
Version:
latest (6.3.2)
6.3.2
6.3.1
6.3.0
6.2.0
6.1.4
6.1.3
6.1.2
6.1.1
6.1.0
6.0.1
6.0.0
5.5.2
5.5.1
5.5.0
5.4.0
5.3.1
5.3.0
5.2.0
5.1.0
5.0.0
4.3.0
4.2.0
4.1.0
4.0.0
3.0.0
2.0.0
1.0.0
0.1.4
0.1.3
0.1.2
0.1.1
Qonversion Cordova Plugin
github.com/qonversion/cordova-plugin
qonversion/cordova-plugin
cordova-plugin-qonversion
/
src
/
plugin
/
ExperimentGroup.ts
14 lines
(11 loc)
•
296 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{
ExperimentGroupType
}
from
"./enums"
;
export
class
ExperimentGroup
{
id
:
string
;
name
:
string
;
type
:
ExperimentGroupType
;
constructor
(
id
:
string
,
name
:
string
,
type
:
ExperimentGroupType
) {
this
.
id
= id;
this
.
name
= name;
this
.
type
=
type
; } }