@monaco-protocol/client-v2 0.0.66-dev.5 → 0.0.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10,19 +10,21 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
+
* This model is deprecated and will be removed in future versions. Please use the Participant model instead.
|
|
13
14
|
*
|
|
15
|
+
* A participant in a given event.
|
|
14
16
|
* @export
|
|
15
17
|
* @interface EventParticipant
|
|
16
18
|
*/
|
|
17
19
|
export interface EventParticipant {
|
|
18
20
|
/**
|
|
19
|
-
*
|
|
21
|
+
* Globally unique ID for this participant across all subcategories
|
|
20
22
|
* @type {string}
|
|
21
23
|
* @memberof EventParticipant
|
|
22
24
|
*/
|
|
23
25
|
id?: string;
|
|
24
26
|
/**
|
|
25
|
-
*
|
|
27
|
+
* Unique code for this participant across all events in a given subcategory
|
|
26
28
|
* @type {string}
|
|
27
29
|
* @memberof EventParticipant
|
|
28
30
|
*/
|
|
@@ -16,7 +16,13 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface Participant {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Globally unique ID for this participant across all subcategories
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof Participant
|
|
22
|
+
*/
|
|
23
|
+
id?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Unique code for this participant across all events in a given subcategory
|
|
20
26
|
* @type {string}
|
|
21
27
|
* @memberof Participant
|
|
22
28
|
*/
|
|
@@ -40,6 +40,7 @@ function ParticipantFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
40
40
|
return json;
|
|
41
41
|
}
|
|
42
42
|
return {
|
|
43
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
43
44
|
'code': json['code'] == null ? undefined : json['code'],
|
|
44
45
|
'name': json['name'] == null ? undefined : json['name'],
|
|
45
46
|
'type': json['type'] == null ? undefined : json['type'],
|
|
@@ -54,6 +55,7 @@ function ParticipantToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
54
55
|
return value;
|
|
55
56
|
}
|
|
56
57
|
return {
|
|
58
|
+
'id': value['id'],
|
|
57
59
|
'code': value['code'],
|
|
58
60
|
'name': value['name'],
|
|
59
61
|
'type': value['type'],
|