@gambulls-org/gambulls-apis 3.0.477 → 3.0.478
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.
package/models/ApiUserHistorySportGet200ResponseResponseObjectItemsInnerBetsInnerSelectionsInner.js
CHANGED
|
@@ -50,6 +50,8 @@ function instanceOfApiUserHistorySportGet200ResponseResponseObjectItemsInnerBets
|
|
|
50
50
|
return false;
|
|
51
51
|
if (!('result' in value) || value['result'] === undefined)
|
|
52
52
|
return false;
|
|
53
|
+
if (!('status' in value) || value['status'] === undefined)
|
|
54
|
+
return false;
|
|
53
55
|
if (!('isLive' in value) || value['isLive'] === undefined)
|
|
54
56
|
return false;
|
|
55
57
|
if (!('isCashout' in value) || value['isCashout'] === undefined)
|
|
@@ -78,6 +80,7 @@ function ApiUserHistorySportGet200ResponseResponseObjectItemsInnerBetsInnerSelec
|
|
|
78
80
|
'selectionName': json['selectionName'],
|
|
79
81
|
'odds': json['odds'],
|
|
80
82
|
'result': json['result'],
|
|
83
|
+
'status': json['status'],
|
|
81
84
|
'isLive': json['isLive'],
|
|
82
85
|
'isCashout': json['isCashout'],
|
|
83
86
|
};
|
|
@@ -104,6 +107,7 @@ function ApiUserHistorySportGet200ResponseResponseObjectItemsInnerBetsInnerSelec
|
|
|
104
107
|
'selectionName': value['selectionName'],
|
|
105
108
|
'odds': value['odds'],
|
|
106
109
|
'result': value['result'],
|
|
110
|
+
'status': value['status'],
|
|
107
111
|
'isLive': value['isLive'],
|
|
108
112
|
'isCashout': value['isCashout'],
|
|
109
113
|
};
|
package/models/ApiUserHistorySportGet200ResponseResponseObjectItemsInnerBetsInnerSelectionsInner.ts
CHANGED
|
@@ -103,6 +103,12 @@ export interface ApiUserHistorySportGet200ResponseResponseObjectItemsInnerBetsIn
|
|
|
103
103
|
* @memberof ApiUserHistorySportGet200ResponseResponseObjectItemsInnerBetsInnerSelectionsInner
|
|
104
104
|
*/
|
|
105
105
|
result: string | null;
|
|
106
|
+
/**
|
|
107
|
+
*
|
|
108
|
+
* @type {string}
|
|
109
|
+
* @memberof ApiUserHistorySportGet200ResponseResponseObjectItemsInnerBetsInnerSelectionsInner
|
|
110
|
+
*/
|
|
111
|
+
status: string | null;
|
|
106
112
|
/**
|
|
107
113
|
*
|
|
108
114
|
* @type {boolean}
|
|
@@ -135,6 +141,7 @@ export function instanceOfApiUserHistorySportGet200ResponseResponseObjectItemsIn
|
|
|
135
141
|
if (!('selectionName' in value) || value['selectionName'] === undefined) return false;
|
|
136
142
|
if (!('odds' in value) || value['odds'] === undefined) return false;
|
|
137
143
|
if (!('result' in value) || value['result'] === undefined) return false;
|
|
144
|
+
if (!('status' in value) || value['status'] === undefined) return false;
|
|
138
145
|
if (!('isLive' in value) || value['isLive'] === undefined) return false;
|
|
139
146
|
if (!('isCashout' in value) || value['isCashout'] === undefined) return false;
|
|
140
147
|
return true;
|
|
@@ -164,6 +171,7 @@ export function ApiUserHistorySportGet200ResponseResponseObjectItemsInnerBetsInn
|
|
|
164
171
|
'selectionName': json['selectionName'],
|
|
165
172
|
'odds': json['odds'],
|
|
166
173
|
'result': json['result'],
|
|
174
|
+
'status': json['status'],
|
|
167
175
|
'isLive': json['isLive'],
|
|
168
176
|
'isCashout': json['isCashout'],
|
|
169
177
|
};
|
|
@@ -194,6 +202,7 @@ export function ApiUserHistorySportGet200ResponseResponseObjectItemsInnerBetsInn
|
|
|
194
202
|
'selectionName': value['selectionName'],
|
|
195
203
|
'odds': value['odds'],
|
|
196
204
|
'result': value['result'],
|
|
205
|
+
'status': value['status'],
|
|
197
206
|
'isLive': value['isLive'],
|
|
198
207
|
'isCashout': value['isCashout'],
|
|
199
208
|
};
|