@otr-app/shared-backend-generated-client 2.5.91 → 2.5.92
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.
- package/dist/angular/.openapi-generator/FILES +6 -1
- package/dist/angular/api/api.ts +3 -1
- package/dist/angular/api/eventBridgeEmailNotificationController.service.ts +166 -0
- package/dist/angular/api/snsListenerController.service.ts +0 -71
- package/dist/angular/api.module.ts +1 -0
- package/dist/angular/model/eventBridgeRequest.ts +26 -0
- package/dist/angular/model/models.ts +5 -1
- package/dist/angular/model/sesBounceObject.ts +29 -0
- package/dist/angular/model/sesComplaintObject.ts +19 -0
- package/dist/angular/model/sesEventDetail.ts +23 -0
- package/dist/angular/model/sesMailObject.ts +21 -0
- package/dist/otrBackendService.js +42 -37
- package/dist/otrBackendService.min.js +7 -7
- package/dist/typescript/api/EventBridgeEmailNotificationControllerApi.d.ts +27 -0
- package/dist/typescript/api/EventBridgeEmailNotificationControllerApi.js +51 -0
- package/dist/typescript/api/SnsListenerControllerApi.d.ts +0 -6
- package/dist/typescript/api/SnsListenerControllerApi.js +0 -25
- package/dist/typescript/api/api.d.ts +3 -1
- package/dist/typescript/api/api.js +3 -1
- package/dist/typescript/api.module.js +1 -0
- package/dist/typescript/model/EventBridgeRequest.d.ts +23 -0
- package/dist/typescript/model/EventBridgeRequest.js +12 -0
- package/dist/typescript/model/SesBounceObject.d.ts +24 -0
- package/dist/typescript/model/SesBounceObject.js +20 -0
- package/dist/typescript/model/SesComplaintObject.d.ts +16 -0
- package/dist/typescript/model/SesComplaintObject.js +12 -0
- package/dist/typescript/model/SesEventDetail.d.ts +18 -0
- package/dist/typescript/model/SesEventDetail.js +12 -0
- package/dist/typescript/model/SesMailObject.d.ts +18 -0
- package/dist/typescript/model/SesMailObject.js +12 -0
- package/dist/typescript/model/models.d.ts +5 -1
- package/dist/typescript/model/models.js +5 -1
- package/dist/typescript-fetch/apis/EventBridgeEmailNotificationControllerApi.d.ts +30 -0
- package/dist/typescript-fetch/apis/EventBridgeEmailNotificationControllerApi.js +62 -0
- package/dist/typescript-fetch/apis/SnsListenerControllerApi.d.ts +1 -12
- package/dist/typescript-fetch/apis/SnsListenerControllerApi.js +1 -31
- package/dist/typescript-fetch/apis/index.d.ts +1 -0
- package/dist/typescript-fetch/apis/index.js +1 -0
- package/dist/typescript-fetch/models/EventBridgeRequest.d.ts +76 -0
- package/dist/typescript-fetch/models/EventBridgeRequest.js +53 -0
- package/dist/typescript-fetch/models/SesBounceObject.d.ts +54 -0
- package/dist/typescript-fetch/models/SesBounceObject.js +52 -0
- package/dist/typescript-fetch/models/SesComplaintObject.d.ts +39 -0
- package/dist/typescript-fetch/models/SesComplaintObject.js +40 -0
- package/dist/typescript-fetch/models/SesEventDetail.d.ts +46 -0
- package/dist/typescript-fetch/models/SesEventDetail.js +43 -0
- package/dist/typescript-fetch/models/SesMailObject.d.ts +51 -0
- package/dist/typescript-fetch/models/SesMailObject.js +44 -0
- package/dist/typescript-fetch/models/index.d.ts +5 -1
- package/dist/typescript-fetch/models/index.js +5 -1
- package/dist/typescript-open-api/otr-backend.d.ts +118 -77
- package/dist/typescript-open-api/otr-backend.js +6 -0
- package/package.json +1 -1
- package/dist/typescript-fetch/models/SNSNotificationRequest.d.ts +0 -45
- package/dist/typescript-fetch/models/SNSNotificationRequest.js +0 -42
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { SesEventDetail } from './';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface EventBridgeRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface EventBridgeRequest {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof EventBridgeRequest
|
|
23
|
+
*/
|
|
24
|
+
account?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {SesEventDetail}
|
|
28
|
+
* @memberof EventBridgeRequest
|
|
29
|
+
*/
|
|
30
|
+
detail?: SesEventDetail;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof EventBridgeRequest
|
|
35
|
+
*/
|
|
36
|
+
detailType?: string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof EventBridgeRequest
|
|
41
|
+
*/
|
|
42
|
+
id?: string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof EventBridgeRequest
|
|
47
|
+
*/
|
|
48
|
+
region?: string;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {Array<string>}
|
|
52
|
+
* @memberof EventBridgeRequest
|
|
53
|
+
*/
|
|
54
|
+
resources?: Array<string>;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof EventBridgeRequest
|
|
59
|
+
*/
|
|
60
|
+
source?: string;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof EventBridgeRequest
|
|
65
|
+
*/
|
|
66
|
+
time?: string;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof EventBridgeRequest
|
|
71
|
+
*/
|
|
72
|
+
version?: string;
|
|
73
|
+
}
|
|
74
|
+
export declare function EventBridgeRequestFromJSON(json: any): EventBridgeRequest;
|
|
75
|
+
export declare function EventBridgeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventBridgeRequest;
|
|
76
|
+
export declare function EventBridgeRequestToJSON(value?: EventBridgeRequest | null): any;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OffTheRecord Rest Service API - Devo
|
|
5
|
+
* A service to handle your traffic tickets
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { exists } from '../runtime';
|
|
15
|
+
import { SesEventDetailFromJSON, SesEventDetailToJSON, } from './';
|
|
16
|
+
export function EventBridgeRequestFromJSON(json) {
|
|
17
|
+
return EventBridgeRequestFromJSONTyped(json, false);
|
|
18
|
+
}
|
|
19
|
+
export function EventBridgeRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
20
|
+
if ((json === undefined) || (json === null)) {
|
|
21
|
+
return json;
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
'account': !exists(json, 'account') ? undefined : json['account'],
|
|
25
|
+
'detail': !exists(json, 'detail') ? undefined : SesEventDetailFromJSON(json['detail']),
|
|
26
|
+
'detailType': !exists(json, 'detail-type') ? undefined : json['detail-type'],
|
|
27
|
+
'id': !exists(json, 'id') ? undefined : json['id'],
|
|
28
|
+
'region': !exists(json, 'region') ? undefined : json['region'],
|
|
29
|
+
'resources': !exists(json, 'resources') ? undefined : json['resources'],
|
|
30
|
+
'source': !exists(json, 'source') ? undefined : json['source'],
|
|
31
|
+
'time': !exists(json, 'time') ? undefined : json['time'],
|
|
32
|
+
'version': !exists(json, 'version') ? undefined : json['version'],
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
export function EventBridgeRequestToJSON(value) {
|
|
36
|
+
if (value === undefined) {
|
|
37
|
+
return undefined;
|
|
38
|
+
}
|
|
39
|
+
if (value === null) {
|
|
40
|
+
return null;
|
|
41
|
+
}
|
|
42
|
+
return {
|
|
43
|
+
'account': value.account,
|
|
44
|
+
'detail': SesEventDetailToJSON(value.detail),
|
|
45
|
+
'detail-type': value.detailType,
|
|
46
|
+
'id': value.id,
|
|
47
|
+
'region': value.region,
|
|
48
|
+
'resources': value.resources,
|
|
49
|
+
'source': value.source,
|
|
50
|
+
'time': value.time,
|
|
51
|
+
'version': value.version,
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SesBounceObject
|
|
16
|
+
*/
|
|
17
|
+
export interface SesBounceObject {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SesBounceObject
|
|
22
|
+
*/
|
|
23
|
+
bounceSubType?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SesBounceObject
|
|
28
|
+
*/
|
|
29
|
+
bounceType?: SesBounceObjectBounceTypeEnum;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SesBounceObject
|
|
34
|
+
*/
|
|
35
|
+
feedbackId?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SesBounceObject
|
|
40
|
+
*/
|
|
41
|
+
timestamp?: string;
|
|
42
|
+
}
|
|
43
|
+
export declare function SesBounceObjectFromJSON(json: any): SesBounceObject;
|
|
44
|
+
export declare function SesBounceObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): SesBounceObject;
|
|
45
|
+
export declare function SesBounceObjectToJSON(value?: SesBounceObject | null): any;
|
|
46
|
+
/**
|
|
47
|
+
* @export
|
|
48
|
+
* @enum {string}
|
|
49
|
+
*/
|
|
50
|
+
export declare enum SesBounceObjectBounceTypeEnum {
|
|
51
|
+
PERMANENT = "PERMANENT",
|
|
52
|
+
TRANSIENT = "TRANSIENT",
|
|
53
|
+
UNDETERMINED = "UNDETERMINED"
|
|
54
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OffTheRecord Rest Service API - Devo
|
|
5
|
+
* A service to handle your traffic tickets
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { exists } from '../runtime';
|
|
15
|
+
export function SesBounceObjectFromJSON(json) {
|
|
16
|
+
return SesBounceObjectFromJSONTyped(json, false);
|
|
17
|
+
}
|
|
18
|
+
export function SesBounceObjectFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
+
if ((json === undefined) || (json === null)) {
|
|
20
|
+
return json;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'bounceSubType': !exists(json, 'bounceSubType') ? undefined : json['bounceSubType'],
|
|
24
|
+
'bounceType': !exists(json, 'bounceType') ? undefined : json['bounceType'],
|
|
25
|
+
'feedbackId': !exists(json, 'feedbackId') ? undefined : json['feedbackId'],
|
|
26
|
+
'timestamp': !exists(json, 'timestamp') ? undefined : json['timestamp'],
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
export function SesBounceObjectToJSON(value) {
|
|
30
|
+
if (value === undefined) {
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
33
|
+
if (value === null) {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'bounceSubType': value.bounceSubType,
|
|
38
|
+
'bounceType': value.bounceType,
|
|
39
|
+
'feedbackId': value.feedbackId,
|
|
40
|
+
'timestamp': value.timestamp,
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @export
|
|
45
|
+
* @enum {string}
|
|
46
|
+
*/
|
|
47
|
+
export var SesBounceObjectBounceTypeEnum;
|
|
48
|
+
(function (SesBounceObjectBounceTypeEnum) {
|
|
49
|
+
SesBounceObjectBounceTypeEnum["PERMANENT"] = "PERMANENT";
|
|
50
|
+
SesBounceObjectBounceTypeEnum["TRANSIENT"] = "TRANSIENT";
|
|
51
|
+
SesBounceObjectBounceTypeEnum["UNDETERMINED"] = "UNDETERMINED";
|
|
52
|
+
})(SesBounceObjectBounceTypeEnum || (SesBounceObjectBounceTypeEnum = {}));
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SesComplaintObject
|
|
16
|
+
*/
|
|
17
|
+
export interface SesComplaintObject {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SesComplaintObject
|
|
22
|
+
*/
|
|
23
|
+
complaintFeedbackType?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SesComplaintObject
|
|
28
|
+
*/
|
|
29
|
+
feedbackId?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SesComplaintObject
|
|
34
|
+
*/
|
|
35
|
+
timestamp?: string;
|
|
36
|
+
}
|
|
37
|
+
export declare function SesComplaintObjectFromJSON(json: any): SesComplaintObject;
|
|
38
|
+
export declare function SesComplaintObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): SesComplaintObject;
|
|
39
|
+
export declare function SesComplaintObjectToJSON(value?: SesComplaintObject | null): any;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OffTheRecord Rest Service API - Devo
|
|
5
|
+
* A service to handle your traffic tickets
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { exists } from '../runtime';
|
|
15
|
+
export function SesComplaintObjectFromJSON(json) {
|
|
16
|
+
return SesComplaintObjectFromJSONTyped(json, false);
|
|
17
|
+
}
|
|
18
|
+
export function SesComplaintObjectFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
+
if ((json === undefined) || (json === null)) {
|
|
20
|
+
return json;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'complaintFeedbackType': !exists(json, 'complaintFeedbackType') ? undefined : json['complaintFeedbackType'],
|
|
24
|
+
'feedbackId': !exists(json, 'feedbackId') ? undefined : json['feedbackId'],
|
|
25
|
+
'timestamp': !exists(json, 'timestamp') ? undefined : json['timestamp'],
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
export function SesComplaintObjectToJSON(value) {
|
|
29
|
+
if (value === undefined) {
|
|
30
|
+
return undefined;
|
|
31
|
+
}
|
|
32
|
+
if (value === null) {
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'complaintFeedbackType': value.complaintFeedbackType,
|
|
37
|
+
'feedbackId': value.feedbackId,
|
|
38
|
+
'timestamp': value.timestamp,
|
|
39
|
+
};
|
|
40
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { SesBounceObject, SesComplaintObject, SesMailObject } from './';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface SesEventDetail
|
|
17
|
+
*/
|
|
18
|
+
export interface SesEventDetail {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {SesBounceObject}
|
|
22
|
+
* @memberof SesEventDetail
|
|
23
|
+
*/
|
|
24
|
+
bounce?: SesBounceObject;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {SesComplaintObject}
|
|
28
|
+
* @memberof SesEventDetail
|
|
29
|
+
*/
|
|
30
|
+
complaint?: SesComplaintObject;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof SesEventDetail
|
|
35
|
+
*/
|
|
36
|
+
eventType?: string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {SesMailObject}
|
|
40
|
+
* @memberof SesEventDetail
|
|
41
|
+
*/
|
|
42
|
+
mail?: SesMailObject;
|
|
43
|
+
}
|
|
44
|
+
export declare function SesEventDetailFromJSON(json: any): SesEventDetail;
|
|
45
|
+
export declare function SesEventDetailFromJSONTyped(json: any, ignoreDiscriminator: boolean): SesEventDetail;
|
|
46
|
+
export declare function SesEventDetailToJSON(value?: SesEventDetail | null): any;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OffTheRecord Rest Service API - Devo
|
|
5
|
+
* A service to handle your traffic tickets
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { exists } from '../runtime';
|
|
15
|
+
import { SesBounceObjectFromJSON, SesBounceObjectToJSON, SesComplaintObjectFromJSON, SesComplaintObjectToJSON, SesMailObjectFromJSON, SesMailObjectToJSON, } from './';
|
|
16
|
+
export function SesEventDetailFromJSON(json) {
|
|
17
|
+
return SesEventDetailFromJSONTyped(json, false);
|
|
18
|
+
}
|
|
19
|
+
export function SesEventDetailFromJSONTyped(json, ignoreDiscriminator) {
|
|
20
|
+
if ((json === undefined) || (json === null)) {
|
|
21
|
+
return json;
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
'bounce': !exists(json, 'bounce') ? undefined : SesBounceObjectFromJSON(json['bounce']),
|
|
25
|
+
'complaint': !exists(json, 'complaint') ? undefined : SesComplaintObjectFromJSON(json['complaint']),
|
|
26
|
+
'eventType': !exists(json, 'eventType') ? undefined : json['eventType'],
|
|
27
|
+
'mail': !exists(json, 'mail') ? undefined : SesMailObjectFromJSON(json['mail']),
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
export function SesEventDetailToJSON(value) {
|
|
31
|
+
if (value === undefined) {
|
|
32
|
+
return undefined;
|
|
33
|
+
}
|
|
34
|
+
if (value === null) {
|
|
35
|
+
return null;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'bounce': SesBounceObjectToJSON(value.bounce),
|
|
39
|
+
'complaint': SesComplaintObjectToJSON(value.complaint),
|
|
40
|
+
'eventType': value.eventType,
|
|
41
|
+
'mail': SesMailObjectToJSON(value.mail),
|
|
42
|
+
};
|
|
43
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SesMailObject
|
|
16
|
+
*/
|
|
17
|
+
export interface SesMailObject {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof SesMailObject
|
|
22
|
+
*/
|
|
23
|
+
destination?: Array<string>;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SesMailObject
|
|
28
|
+
*/
|
|
29
|
+
messageId?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SesMailObject
|
|
34
|
+
*/
|
|
35
|
+
source?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SesMailObject
|
|
40
|
+
*/
|
|
41
|
+
sourceArn?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof SesMailObject
|
|
46
|
+
*/
|
|
47
|
+
timestamp?: string;
|
|
48
|
+
}
|
|
49
|
+
export declare function SesMailObjectFromJSON(json: any): SesMailObject;
|
|
50
|
+
export declare function SesMailObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): SesMailObject;
|
|
51
|
+
export declare function SesMailObjectToJSON(value?: SesMailObject | null): any;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OffTheRecord Rest Service API - Devo
|
|
5
|
+
* A service to handle your traffic tickets
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { exists } from '../runtime';
|
|
15
|
+
export function SesMailObjectFromJSON(json) {
|
|
16
|
+
return SesMailObjectFromJSONTyped(json, false);
|
|
17
|
+
}
|
|
18
|
+
export function SesMailObjectFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
+
if ((json === undefined) || (json === null)) {
|
|
20
|
+
return json;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'destination': !exists(json, 'destination') ? undefined : json['destination'],
|
|
24
|
+
'messageId': !exists(json, 'messageId') ? undefined : json['messageId'],
|
|
25
|
+
'source': !exists(json, 'source') ? undefined : json['source'],
|
|
26
|
+
'sourceArn': !exists(json, 'sourceArn') ? undefined : json['sourceArn'],
|
|
27
|
+
'timestamp': !exists(json, 'timestamp') ? undefined : json['timestamp'],
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
export function SesMailObjectToJSON(value) {
|
|
31
|
+
if (value === undefined) {
|
|
32
|
+
return undefined;
|
|
33
|
+
}
|
|
34
|
+
if (value === null) {
|
|
35
|
+
return null;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'destination': value.destination,
|
|
39
|
+
'messageId': value.messageId,
|
|
40
|
+
'source': value.source,
|
|
41
|
+
'sourceArn': value.sourceArn,
|
|
42
|
+
'timestamp': value.timestamp,
|
|
43
|
+
};
|
|
44
|
+
}
|
|
@@ -236,6 +236,7 @@ export * from './EnableViolationsForLawfirmResponse';
|
|
|
236
236
|
export * from './EngagementLetterModel';
|
|
237
237
|
export * from './EstimateInsuranceSavingsRequest';
|
|
238
238
|
export * from './EstimateInsuranceSavingsResponse';
|
|
239
|
+
export * from './EventBridgeRequest';
|
|
239
240
|
export * from './ExistingAccountDetails';
|
|
240
241
|
export * from './ExternalContentVote';
|
|
241
242
|
export * from './ExternalTicketCourt';
|
|
@@ -626,7 +627,6 @@ export * from './ReviewCommentModel';
|
|
|
626
627
|
export * from './ReviewRatingModel';
|
|
627
628
|
export * from './ReviewVoteAggregateModel';
|
|
628
629
|
export * from './RichCitationInferenceResponse';
|
|
629
|
-
export * from './SNSNotificationRequest';
|
|
630
630
|
export * from './SSLCertificateResponse';
|
|
631
631
|
export * from './SaveAgentBookingRequest';
|
|
632
632
|
export * from './SaveAgentBookingResponse';
|
|
@@ -667,6 +667,10 @@ export * from './SendPayoutToLawfirmRequest';
|
|
|
667
667
|
export * from './SendPayoutToLawfirmResponse';
|
|
668
668
|
export * from './SendTextAlertToUserRequest';
|
|
669
669
|
export * from './ServiceLevelAgreement';
|
|
670
|
+
export * from './SesBounceObject';
|
|
671
|
+
export * from './SesComplaintObject';
|
|
672
|
+
export * from './SesEventDetail';
|
|
673
|
+
export * from './SesMailObject';
|
|
670
674
|
export * from './SetArchiveCaseModel';
|
|
671
675
|
export * from './SetArchiveOnCasesRequest';
|
|
672
676
|
export * from './SetCourtDateForCaseRequest';
|
|
@@ -236,6 +236,7 @@ export * from './EnableViolationsForLawfirmResponse';
|
|
|
236
236
|
export * from './EngagementLetterModel';
|
|
237
237
|
export * from './EstimateInsuranceSavingsRequest';
|
|
238
238
|
export * from './EstimateInsuranceSavingsResponse';
|
|
239
|
+
export * from './EventBridgeRequest';
|
|
239
240
|
export * from './ExistingAccountDetails';
|
|
240
241
|
export * from './ExternalContentVote';
|
|
241
242
|
export * from './ExternalTicketCourt';
|
|
@@ -626,7 +627,6 @@ export * from './ReviewCommentModel';
|
|
|
626
627
|
export * from './ReviewRatingModel';
|
|
627
628
|
export * from './ReviewVoteAggregateModel';
|
|
628
629
|
export * from './RichCitationInferenceResponse';
|
|
629
|
-
export * from './SNSNotificationRequest';
|
|
630
630
|
export * from './SSLCertificateResponse';
|
|
631
631
|
export * from './SaveAgentBookingRequest';
|
|
632
632
|
export * from './SaveAgentBookingResponse';
|
|
@@ -667,6 +667,10 @@ export * from './SendPayoutToLawfirmRequest';
|
|
|
667
667
|
export * from './SendPayoutToLawfirmResponse';
|
|
668
668
|
export * from './SendTextAlertToUserRequest';
|
|
669
669
|
export * from './ServiceLevelAgreement';
|
|
670
|
+
export * from './SesBounceObject';
|
|
671
|
+
export * from './SesComplaintObject';
|
|
672
|
+
export * from './SesEventDetail';
|
|
673
|
+
export * from './SesMailObject';
|
|
670
674
|
export * from './SetArchiveCaseModel';
|
|
671
675
|
export * from './SetArchiveOnCasesRequest';
|
|
672
676
|
export * from './SetCourtDateForCaseRequest';
|