@otr-app/shared-backend-generated-client 2.5.17 → 2.5.18
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.
|
@@ -16,6 +16,7 @@ import { CaseUserPermissionAttributes } from './caseUserPermissionAttributes';
|
|
|
16
16
|
export interface CaseUserDetailsModel {
|
|
17
17
|
additionalNote?: string;
|
|
18
18
|
defendantAttributes?: CaseUserDefendantAttributes;
|
|
19
|
+
defendantProfilePictureUrl?: string;
|
|
19
20
|
isBookingAgent?: boolean;
|
|
20
21
|
isDefendant?: boolean;
|
|
21
22
|
isOwner?: boolean;
|
|
@@ -13,6 +13,7 @@ import * as models from './models';
|
|
|
13
13
|
export interface CaseUserDetailsModel {
|
|
14
14
|
"additionalNote"?: string;
|
|
15
15
|
"defendantAttributes"?: models.CaseUserDefendantAttributes;
|
|
16
|
+
"defendantProfilePictureUrl"?: string;
|
|
16
17
|
"isBookingAgent"?: boolean;
|
|
17
18
|
"isDefendant"?: boolean;
|
|
18
19
|
"isOwner"?: boolean;
|
|
@@ -28,6 +28,12 @@ export interface CaseUserDetailsModel {
|
|
|
28
28
|
* @memberof CaseUserDetailsModel
|
|
29
29
|
*/
|
|
30
30
|
defendantAttributes?: CaseUserDefendantAttributes;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CaseUserDetailsModel
|
|
35
|
+
*/
|
|
36
|
+
defendantProfilePictureUrl?: string;
|
|
31
37
|
/**
|
|
32
38
|
*
|
|
33
39
|
* @type {boolean}
|
|
@@ -23,6 +23,7 @@ export function CaseUserDetailsModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
23
23
|
return {
|
|
24
24
|
'additionalNote': !exists(json, 'additionalNote') ? undefined : json['additionalNote'],
|
|
25
25
|
'defendantAttributes': !exists(json, 'defendantAttributes') ? undefined : CaseUserDefendantAttributesFromJSON(json['defendantAttributes']),
|
|
26
|
+
'defendantProfilePictureUrl': !exists(json, 'defendantProfilePictureUrl') ? undefined : json['defendantProfilePictureUrl'],
|
|
26
27
|
'isBookingAgent': !exists(json, 'isBookingAgent') ? undefined : json['isBookingAgent'],
|
|
27
28
|
'isDefendant': !exists(json, 'isDefendant') ? undefined : json['isDefendant'],
|
|
28
29
|
'isOwner': !exists(json, 'isOwner') ? undefined : json['isOwner'],
|
|
@@ -41,6 +42,7 @@ export function CaseUserDetailsModelToJSON(value) {
|
|
|
41
42
|
return {
|
|
42
43
|
'additionalNote': value.additionalNote,
|
|
43
44
|
'defendantAttributes': CaseUserDefendantAttributesToJSON(value.defendantAttributes),
|
|
45
|
+
'defendantProfilePictureUrl': value.defendantProfilePictureUrl,
|
|
44
46
|
'isBookingAgent': value.isBookingAgent,
|
|
45
47
|
'isDefendant': value.isDefendant,
|
|
46
48
|
'isOwner': value.isOwner,
|