@otr-app/shared-backend-generated-client 2.4.48 → 2.4.49
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.
|
@@ -18,10 +18,12 @@ export interface ActivityFeedModel {
|
|
|
18
18
|
activityType?: ActivityFeedModel.ActivityTypeEnum;
|
|
19
19
|
caseStatus?: ActivityFeedModel.CaseStatusEnum;
|
|
20
20
|
city?: string;
|
|
21
|
+
hasStateViolationData?: boolean;
|
|
21
22
|
ownerName?: string;
|
|
22
23
|
privacyMode?: ActivityFeedModel.PrivacyModeEnum;
|
|
23
24
|
profilePicUrl?: string;
|
|
24
25
|
regionCode?: string;
|
|
26
|
+
totalLegalFeeInCents?: number;
|
|
25
27
|
violationDescription?: string;
|
|
26
28
|
}
|
|
27
29
|
export namespace ActivityFeedModel {
|
|
@@ -16,10 +16,12 @@ export interface ActivityFeedModel {
|
|
|
16
16
|
"activityType"?: ActivityFeedModel.ActivityTypeEnum;
|
|
17
17
|
"caseStatus"?: ActivityFeedModel.CaseStatusEnum;
|
|
18
18
|
"city"?: string;
|
|
19
|
+
"hasStateViolationData"?: boolean;
|
|
19
20
|
"ownerName"?: string;
|
|
20
21
|
"privacyMode"?: ActivityFeedModel.PrivacyModeEnum;
|
|
21
22
|
"profilePicUrl"?: string;
|
|
22
23
|
"regionCode"?: string;
|
|
24
|
+
"totalLegalFeeInCents"?: number;
|
|
23
25
|
"violationDescription"?: string;
|
|
24
26
|
}
|
|
25
27
|
export declare namespace ActivityFeedModel {
|
|
@@ -51,6 +51,12 @@ export interface ActivityFeedModel {
|
|
|
51
51
|
* @memberof ActivityFeedModel
|
|
52
52
|
*/
|
|
53
53
|
city?: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {boolean}
|
|
57
|
+
* @memberof ActivityFeedModel
|
|
58
|
+
*/
|
|
59
|
+
hasStateViolationData?: boolean;
|
|
54
60
|
/**
|
|
55
61
|
*
|
|
56
62
|
* @type {string}
|
|
@@ -75,6 +81,12 @@ export interface ActivityFeedModel {
|
|
|
75
81
|
* @memberof ActivityFeedModel
|
|
76
82
|
*/
|
|
77
83
|
regionCode?: string;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @type {number}
|
|
87
|
+
* @memberof ActivityFeedModel
|
|
88
|
+
*/
|
|
89
|
+
totalLegalFeeInCents?: number;
|
|
78
90
|
/**
|
|
79
91
|
*
|
|
80
92
|
* @type {string}
|
|
@@ -26,10 +26,12 @@ export function ActivityFeedModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
26
26
|
'activityType': !exists(json, 'activityType') ? undefined : json['activityType'],
|
|
27
27
|
'caseStatus': !exists(json, 'caseStatus') ? undefined : json['caseStatus'],
|
|
28
28
|
'city': !exists(json, 'city') ? undefined : json['city'],
|
|
29
|
+
'hasStateViolationData': !exists(json, 'hasStateViolationData') ? undefined : json['hasStateViolationData'],
|
|
29
30
|
'ownerName': !exists(json, 'ownerName') ? undefined : json['ownerName'],
|
|
30
31
|
'privacyMode': !exists(json, 'privacyMode') ? undefined : json['privacyMode'],
|
|
31
32
|
'profilePicUrl': !exists(json, 'profilePicUrl') ? undefined : json['profilePicUrl'],
|
|
32
33
|
'regionCode': !exists(json, 'regionCode') ? undefined : json['regionCode'],
|
|
34
|
+
'totalLegalFeeInCents': !exists(json, 'totalLegalFeeInCents') ? undefined : json['totalLegalFeeInCents'],
|
|
33
35
|
'violationDescription': !exists(json, 'violationDescription') ? undefined : json['violationDescription'],
|
|
34
36
|
};
|
|
35
37
|
}
|
|
@@ -47,10 +49,12 @@ export function ActivityFeedModelToJSON(value) {
|
|
|
47
49
|
'activityType': value.activityType,
|
|
48
50
|
'caseStatus': value.caseStatus,
|
|
49
51
|
'city': value.city,
|
|
52
|
+
'hasStateViolationData': value.hasStateViolationData,
|
|
50
53
|
'ownerName': value.ownerName,
|
|
51
54
|
'privacyMode': value.privacyMode,
|
|
52
55
|
'profilePicUrl': value.profilePicUrl,
|
|
53
56
|
'regionCode': value.regionCode,
|
|
57
|
+
'totalLegalFeeInCents': value.totalLegalFeeInCents,
|
|
54
58
|
'violationDescription': value.violationDescription,
|
|
55
59
|
};
|
|
56
60
|
}
|