@gambulls-org/gambulls-apis 3.0.771 → 3.0.772
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.
|
@@ -37,6 +37,8 @@ function instanceOfApiAdminUsersGet200ResponseResponseObjectItemsInner(value) {
|
|
|
37
37
|
return false;
|
|
38
38
|
if (!('totalRTP' in value) || value['totalRTP'] === undefined)
|
|
39
39
|
return false;
|
|
40
|
+
if (!('totalDeposit' in value) || value['totalDeposit'] === undefined)
|
|
41
|
+
return false;
|
|
40
42
|
if (!('totalNetDeposit' in value) || value['totalNetDeposit'] === undefined)
|
|
41
43
|
return false;
|
|
42
44
|
if (!('totalWithdrawal' in value) || value['totalWithdrawal'] === undefined)
|
|
@@ -66,6 +68,7 @@ function ApiAdminUsersGet200ResponseResponseObjectItemsInnerFromJSONTyped(json,
|
|
|
66
68
|
'totalRealWager': json['totalRealWager'],
|
|
67
69
|
'totalGGR': json['totalGGR'],
|
|
68
70
|
'totalRTP': json['totalRTP'],
|
|
71
|
+
'totalDeposit': json['totalDeposit'],
|
|
69
72
|
'totalNetDeposit': json['totalNetDeposit'],
|
|
70
73
|
'totalWithdrawal': json['totalWithdrawal'],
|
|
71
74
|
'depositCount': json['depositCount'],
|
|
@@ -90,6 +93,7 @@ function ApiAdminUsersGet200ResponseResponseObjectItemsInnerToJSONTyped(value, i
|
|
|
90
93
|
'totalRealWager': value['totalRealWager'],
|
|
91
94
|
'totalGGR': value['totalGGR'],
|
|
92
95
|
'totalRTP': value['totalRTP'],
|
|
96
|
+
'totalDeposit': value['totalDeposit'],
|
|
93
97
|
'totalNetDeposit': value['totalNetDeposit'],
|
|
94
98
|
'totalWithdrawal': value['totalWithdrawal'],
|
|
95
99
|
'depositCount': value['depositCount'],
|
|
@@ -69,6 +69,12 @@ export interface ApiAdminUsersGet200ResponseResponseObjectItemsInner {
|
|
|
69
69
|
* @memberof ApiAdminUsersGet200ResponseResponseObjectItemsInner
|
|
70
70
|
*/
|
|
71
71
|
totalRTP: string;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof ApiAdminUsersGet200ResponseResponseObjectItemsInner
|
|
76
|
+
*/
|
|
77
|
+
totalDeposit: string;
|
|
72
78
|
/**
|
|
73
79
|
*
|
|
74
80
|
* @type {string}
|
|
@@ -124,6 +130,7 @@ export function instanceOfApiAdminUsersGet200ResponseResponseObjectItemsInner(va
|
|
|
124
130
|
if (!('totalRealWager' in value) || value['totalRealWager'] === undefined) return false;
|
|
125
131
|
if (!('totalGGR' in value) || value['totalGGR'] === undefined) return false;
|
|
126
132
|
if (!('totalRTP' in value) || value['totalRTP'] === undefined) return false;
|
|
133
|
+
if (!('totalDeposit' in value) || value['totalDeposit'] === undefined) return false;
|
|
127
134
|
if (!('totalNetDeposit' in value) || value['totalNetDeposit'] === undefined) return false;
|
|
128
135
|
if (!('totalWithdrawal' in value) || value['totalWithdrawal'] === undefined) return false;
|
|
129
136
|
if (!('depositCount' in value) || value['depositCount'] === undefined) return false;
|
|
@@ -150,6 +157,7 @@ export function ApiAdminUsersGet200ResponseResponseObjectItemsInnerFromJSONTyped
|
|
|
150
157
|
'totalRealWager': json['totalRealWager'],
|
|
151
158
|
'totalGGR': json['totalGGR'],
|
|
152
159
|
'totalRTP': json['totalRTP'],
|
|
160
|
+
'totalDeposit': json['totalDeposit'],
|
|
153
161
|
'totalNetDeposit': json['totalNetDeposit'],
|
|
154
162
|
'totalWithdrawal': json['totalWithdrawal'],
|
|
155
163
|
'depositCount': json['depositCount'],
|
|
@@ -178,6 +186,7 @@ export function ApiAdminUsersGet200ResponseResponseObjectItemsInnerFromJSONTyped
|
|
|
178
186
|
'totalRealWager': value['totalRealWager'],
|
|
179
187
|
'totalGGR': value['totalGGR'],
|
|
180
188
|
'totalRTP': value['totalRTP'],
|
|
189
|
+
'totalDeposit': value['totalDeposit'],
|
|
181
190
|
'totalNetDeposit': value['totalNetDeposit'],
|
|
182
191
|
'totalWithdrawal': value['totalWithdrawal'],
|
|
183
192
|
'depositCount': value['depositCount'],
|