@gambulls-org/gambulls-apis 3.0.236 → 3.0.238
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.
|
@@ -33,6 +33,8 @@ function instanceOfApiAdminPsWithdrawalGet200ResponseResponseObject(value) {
|
|
|
33
33
|
return false;
|
|
34
34
|
if (!('pageSize' in value) || value['pageSize'] === undefined)
|
|
35
35
|
return false;
|
|
36
|
+
if (!('totalSumAmountUSD' in value) || value['totalSumAmountUSD'] === undefined)
|
|
37
|
+
return false;
|
|
36
38
|
return true;
|
|
37
39
|
}
|
|
38
40
|
function ApiAdminPsWithdrawalGet200ResponseResponseObjectFromJSON(json) {
|
|
@@ -48,6 +50,7 @@ function ApiAdminPsWithdrawalGet200ResponseResponseObjectFromJSONTyped(json, ign
|
|
|
48
50
|
'totalItems': json['totalItems'],
|
|
49
51
|
'totalPages': json['totalPages'],
|
|
50
52
|
'pageSize': json['pageSize'],
|
|
53
|
+
'totalSumAmountUSD': json['totalSumAmountUSD'],
|
|
51
54
|
};
|
|
52
55
|
}
|
|
53
56
|
function ApiAdminPsWithdrawalGet200ResponseResponseObjectToJSON(json) {
|
|
@@ -63,5 +66,6 @@ function ApiAdminPsWithdrawalGet200ResponseResponseObjectToJSONTyped(value, igno
|
|
|
63
66
|
'totalItems': value['totalItems'],
|
|
64
67
|
'totalPages': value['totalPages'],
|
|
65
68
|
'pageSize': value['pageSize'],
|
|
69
|
+
'totalSumAmountUSD': value['totalSumAmountUSD'],
|
|
66
70
|
};
|
|
67
71
|
}
|
|
@@ -57,6 +57,12 @@ export interface ApiAdminPsWithdrawalGet200ResponseResponseObject {
|
|
|
57
57
|
* @memberof ApiAdminPsWithdrawalGet200ResponseResponseObject
|
|
58
58
|
*/
|
|
59
59
|
pageSize: number;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof ApiAdminPsWithdrawalGet200ResponseResponseObject
|
|
64
|
+
*/
|
|
65
|
+
totalSumAmountUSD: string;
|
|
60
66
|
}
|
|
61
67
|
|
|
62
68
|
/**
|
|
@@ -68,6 +74,7 @@ export function instanceOfApiAdminPsWithdrawalGet200ResponseResponseObject(value
|
|
|
68
74
|
if (!('totalItems' in value) || value['totalItems'] === undefined) return false;
|
|
69
75
|
if (!('totalPages' in value) || value['totalPages'] === undefined) return false;
|
|
70
76
|
if (!('pageSize' in value) || value['pageSize'] === undefined) return false;
|
|
77
|
+
if (!('totalSumAmountUSD' in value) || value['totalSumAmountUSD'] === undefined) return false;
|
|
71
78
|
return true;
|
|
72
79
|
}
|
|
73
80
|
|
|
@@ -86,6 +93,7 @@ export function ApiAdminPsWithdrawalGet200ResponseResponseObjectFromJSONTyped(js
|
|
|
86
93
|
'totalItems': json['totalItems'],
|
|
87
94
|
'totalPages': json['totalPages'],
|
|
88
95
|
'pageSize': json['pageSize'],
|
|
96
|
+
'totalSumAmountUSD': json['totalSumAmountUSD'],
|
|
89
97
|
};
|
|
90
98
|
}
|
|
91
99
|
|
|
@@ -105,6 +113,7 @@ export function ApiAdminPsWithdrawalGet200ResponseResponseObjectFromJSONTyped(js
|
|
|
105
113
|
'totalItems': value['totalItems'],
|
|
106
114
|
'totalPages': value['totalPages'],
|
|
107
115
|
'pageSize': value['pageSize'],
|
|
116
|
+
'totalSumAmountUSD': value['totalSumAmountUSD'],
|
|
108
117
|
};
|
|
109
118
|
}
|
|
110
119
|
|