@gambulls-org/gambulls-apis 3.0.167 → 3.0.169
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.
|
@@ -38,6 +38,10 @@ function instanceOfApiAdminRakebackEventGet200ResponseResponseObjectItemsInner(v
|
|
|
38
38
|
return false;
|
|
39
39
|
if (!('priority' in value) || value['priority'] === undefined)
|
|
40
40
|
return false;
|
|
41
|
+
if (!('activeTimeStart' in value) || value['activeTimeStart'] === undefined)
|
|
42
|
+
return false;
|
|
43
|
+
if (!('activeTimeEnd' in value) || value['activeTimeEnd'] === undefined)
|
|
44
|
+
return false;
|
|
41
45
|
if (!('applyToAllUsers' in value) || value['applyToAllUsers'] === undefined)
|
|
42
46
|
return false;
|
|
43
47
|
if (!('targetGroupIds' in value) || value['targetGroupIds'] === undefined)
|
|
@@ -66,6 +70,8 @@ function ApiAdminRakebackEventGet200ResponseResponseObjectItemsInnerFromJSONType
|
|
|
66
70
|
'endDate': json['endDate'],
|
|
67
71
|
'isActive': json['isActive'],
|
|
68
72
|
'priority': json['priority'],
|
|
73
|
+
'activeTimeStart': json['activeTimeStart'],
|
|
74
|
+
'activeTimeEnd': json['activeTimeEnd'],
|
|
69
75
|
'applyToAllUsers': json['applyToAllUsers'],
|
|
70
76
|
'targetGroupIds': json['targetGroupIds'],
|
|
71
77
|
'targetUserIds': json['targetUserIds'],
|
|
@@ -89,6 +95,8 @@ function ApiAdminRakebackEventGet200ResponseResponseObjectItemsInnerToJSONTyped(
|
|
|
89
95
|
'endDate': value['endDate'],
|
|
90
96
|
'isActive': value['isActive'],
|
|
91
97
|
'priority': value['priority'],
|
|
98
|
+
'activeTimeStart': value['activeTimeStart'],
|
|
99
|
+
'activeTimeEnd': value['activeTimeEnd'],
|
|
92
100
|
'applyToAllUsers': value['applyToAllUsers'],
|
|
93
101
|
'targetGroupIds': value['targetGroupIds'],
|
|
94
102
|
'targetUserIds': value['targetUserIds'],
|
|
@@ -67,6 +67,18 @@ export interface ApiAdminRakebackEventGet200ResponseResponseObjectItemsInner {
|
|
|
67
67
|
* @memberof ApiAdminRakebackEventGet200ResponseResponseObjectItemsInner
|
|
68
68
|
*/
|
|
69
69
|
priority: number;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {string}
|
|
73
|
+
* @memberof ApiAdminRakebackEventGet200ResponseResponseObjectItemsInner
|
|
74
|
+
*/
|
|
75
|
+
activeTimeStart: string | null;
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* @type {string}
|
|
79
|
+
* @memberof ApiAdminRakebackEventGet200ResponseResponseObjectItemsInner
|
|
80
|
+
*/
|
|
81
|
+
activeTimeEnd: string | null;
|
|
70
82
|
/**
|
|
71
83
|
*
|
|
72
84
|
* @type {boolean}
|
|
@@ -111,6 +123,8 @@ export function instanceOfApiAdminRakebackEventGet200ResponseResponseObjectItems
|
|
|
111
123
|
if (!('endDate' in value) || value['endDate'] === undefined) return false;
|
|
112
124
|
if (!('isActive' in value) || value['isActive'] === undefined) return false;
|
|
113
125
|
if (!('priority' in value) || value['priority'] === undefined) return false;
|
|
126
|
+
if (!('activeTimeStart' in value) || value['activeTimeStart'] === undefined) return false;
|
|
127
|
+
if (!('activeTimeEnd' in value) || value['activeTimeEnd'] === undefined) return false;
|
|
114
128
|
if (!('applyToAllUsers' in value) || value['applyToAllUsers'] === undefined) return false;
|
|
115
129
|
if (!('targetGroupIds' in value) || value['targetGroupIds'] === undefined) return false;
|
|
116
130
|
if (!('targetUserIds' in value) || value['targetUserIds'] === undefined) return false;
|
|
@@ -137,6 +151,8 @@ export function ApiAdminRakebackEventGet200ResponseResponseObjectItemsInnerFromJ
|
|
|
137
151
|
'endDate': json['endDate'],
|
|
138
152
|
'isActive': json['isActive'],
|
|
139
153
|
'priority': json['priority'],
|
|
154
|
+
'activeTimeStart': json['activeTimeStart'],
|
|
155
|
+
'activeTimeEnd': json['activeTimeEnd'],
|
|
140
156
|
'applyToAllUsers': json['applyToAllUsers'],
|
|
141
157
|
'targetGroupIds': json['targetGroupIds'],
|
|
142
158
|
'targetUserIds': json['targetUserIds'],
|
|
@@ -164,6 +180,8 @@ export function ApiAdminRakebackEventGet200ResponseResponseObjectItemsInnerFromJ
|
|
|
164
180
|
'endDate': value['endDate'],
|
|
165
181
|
'isActive': value['isActive'],
|
|
166
182
|
'priority': value['priority'],
|
|
183
|
+
'activeTimeStart': value['activeTimeStart'],
|
|
184
|
+
'activeTimeEnd': value['activeTimeEnd'],
|
|
167
185
|
'applyToAllUsers': value['applyToAllUsers'],
|
|
168
186
|
'targetGroupIds': value['targetGroupIds'],
|
|
169
187
|
'targetUserIds': value['targetUserIds'],
|