@gambulls-org/gambulls-apis 3.0.667 → 3.0.669
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.
|
@@ -25,6 +25,10 @@ const ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInnerUser_1 = re
|
|
|
25
25
|
function instanceOfApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInner(value) {
|
|
26
26
|
if (!('apiKey' in value) || value['apiKey'] === undefined)
|
|
27
27
|
return false;
|
|
28
|
+
if (!('updatedAt' in value) || value['updatedAt'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('updatedBy' in value) || value['updatedBy'] === undefined)
|
|
31
|
+
return false;
|
|
28
32
|
if (!('user' in value) || value['user'] === undefined)
|
|
29
33
|
return false;
|
|
30
34
|
return true;
|
|
@@ -38,6 +42,8 @@ function ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInnerFromJSON
|
|
|
38
42
|
}
|
|
39
43
|
return {
|
|
40
44
|
'apiKey': json['apiKey'],
|
|
45
|
+
'updatedAt': (json['updatedAt'] == null ? null : new Date(json['updatedAt'])),
|
|
46
|
+
'updatedBy': json['updatedBy'],
|
|
41
47
|
'user': (0, ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInnerUser_1.ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInnerUserFromJSON)(json['user']),
|
|
42
48
|
};
|
|
43
49
|
}
|
|
@@ -50,6 +56,8 @@ function ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInnerToJSONTy
|
|
|
50
56
|
}
|
|
51
57
|
return {
|
|
52
58
|
'apiKey': value['apiKey'],
|
|
59
|
+
'updatedAt': (value['updatedAt'] == null ? null : value['updatedAt'].toISOString()),
|
|
60
|
+
'updatedBy': value['updatedBy'],
|
|
53
61
|
'user': (0, ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInnerUser_1.ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInnerUserToJSON)(value['user']),
|
|
54
62
|
};
|
|
55
63
|
}
|
|
@@ -33,6 +33,18 @@ export interface ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInner
|
|
|
33
33
|
* @memberof ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInner
|
|
34
34
|
*/
|
|
35
35
|
apiKey: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Date}
|
|
39
|
+
* @memberof ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInner
|
|
40
|
+
*/
|
|
41
|
+
updatedAt: Date | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInner
|
|
46
|
+
*/
|
|
47
|
+
updatedBy: string | null;
|
|
36
48
|
/**
|
|
37
49
|
*
|
|
38
50
|
* @type {ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInnerUser}
|
|
@@ -46,6 +58,8 @@ export interface ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInner
|
|
|
46
58
|
*/
|
|
47
59
|
export function instanceOfApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInner(value: object): value is ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInner {
|
|
48
60
|
if (!('apiKey' in value) || value['apiKey'] === undefined) return false;
|
|
61
|
+
if (!('updatedAt' in value) || value['updatedAt'] === undefined) return false;
|
|
62
|
+
if (!('updatedBy' in value) || value['updatedBy'] === undefined) return false;
|
|
49
63
|
if (!('user' in value) || value['user'] === undefined) return false;
|
|
50
64
|
return true;
|
|
51
65
|
}
|
|
@@ -61,6 +75,8 @@ export function ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInnerF
|
|
|
61
75
|
return {
|
|
62
76
|
|
|
63
77
|
'apiKey': json['apiKey'],
|
|
78
|
+
'updatedAt': (json['updatedAt'] == null ? null : new Date(json['updatedAt'])),
|
|
79
|
+
'updatedBy': json['updatedBy'],
|
|
64
80
|
'user': ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInnerUserFromJSON(json['user']),
|
|
65
81
|
};
|
|
66
82
|
}
|
|
@@ -77,6 +93,8 @@ export function ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInnerF
|
|
|
77
93
|
return {
|
|
78
94
|
|
|
79
95
|
'apiKey': value['apiKey'],
|
|
96
|
+
'updatedAt': (value['updatedAt'] == null ? null : (value['updatedAt'] as any).toISOString()),
|
|
97
|
+
'updatedBy': value['updatedBy'],
|
|
80
98
|
'user': ApiAdminGroupGroupIdGet200ResponseResponseObjectGroupUsersInnerUserToJSON(value['user']),
|
|
81
99
|
};
|
|
82
100
|
}
|