@channelpayments/node-sdk 1.192.0 → 1.194.0
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/cjs/models/CheckoutSessionBaseEntity.d.ts +15 -0
- package/dist/cjs/models/CheckoutSessionBaseEntity.js +11 -1
- package/dist/cjs/models/CheckoutSessionEntity.d.ts +15 -0
- package/dist/cjs/models/CheckoutSessionEntity.js +11 -1
- package/dist/cjs/models/CreateTransactionsReportDto.d.ts +112 -0
- package/dist/cjs/models/CreateTransactionsReportDto.js +99 -0
- package/dist/cjs/models/CreateTransactionsReportsFiltersDto.d.ts +151 -0
- package/dist/cjs/models/CreateTransactionsReportsFiltersDto.js +126 -0
- package/dist/cjs/models/CreateTransactionsReportsScheduleDto.d.ts +121 -0
- package/dist/cjs/models/CreateTransactionsReportsScheduleDto.js +107 -0
- package/dist/cjs/models/CreateTransactionsReportsTemplateDto.d.ts +94 -0
- package/dist/cjs/models/CreateTransactionsReportsTemplateDto.js +90 -0
- package/dist/cjs/models/ReportCreatorEntity.d.ts +32 -0
- package/dist/cjs/models/ReportCreatorEntity.js +49 -0
- package/dist/cjs/models/TransactionsRecordEntity.d.ts +303 -0
- package/dist/cjs/models/TransactionsRecordEntity.js +188 -0
- package/dist/cjs/models/TransactionsReportEntity.d.ts +171 -0
- package/dist/cjs/models/TransactionsReportEntity.js +133 -0
- package/dist/cjs/models/TransactionsReportScheduleEntity.d.ts +176 -0
- package/dist/cjs/models/TransactionsReportScheduleEntity.js +131 -0
- package/dist/cjs/models/TransactionsReportSchedulesSearchQueryResponseEntity.d.ts +69 -0
- package/dist/cjs/models/TransactionsReportSchedulesSearchQueryResponseEntity.js +66 -0
- package/dist/cjs/models/TransactionsReportTemplateEntity.d.ts +156 -0
- package/dist/cjs/models/TransactionsReportTemplateEntity.js +121 -0
- package/dist/cjs/models/TransactionsReportTemplatesSearchQueryResponseEntity.d.ts +69 -0
- package/dist/cjs/models/TransactionsReportTemplatesSearchQueryResponseEntity.js +66 -0
- package/dist/cjs/models/TransactionsReportsFiltersEntity.d.ts +151 -0
- package/dist/cjs/models/TransactionsReportsFiltersEntity.js +126 -0
- package/dist/cjs/models/TransactionsReportsSearchQueryResponseEntity.d.ts +69 -0
- package/dist/cjs/models/TransactionsReportsSearchQueryResponseEntity.js +66 -0
- package/dist/cjs/models/UpdateTransactionsReportsScheduleDto.d.ts +127 -0
- package/dist/cjs/models/UpdateTransactionsReportsScheduleDto.js +101 -0
- package/dist/cjs/models/UpdateTransactionsReportsTemplateDto.d.ts +106 -0
- package/dist/cjs/models/UpdateTransactionsReportsTemplateDto.js +89 -0
- package/dist/cjs/models/index.d.ts +15 -0
- package/dist/cjs/models/index.js +15 -0
- package/dist/cjs/runtime.js +1 -1
- package/dist/mjs/models/CheckoutSessionBaseEntity.d.ts +15 -0
- package/dist/mjs/models/CheckoutSessionBaseEntity.js +10 -0
- package/dist/mjs/models/CheckoutSessionEntity.d.ts +15 -0
- package/dist/mjs/models/CheckoutSessionEntity.js +10 -0
- package/dist/mjs/models/CreateTransactionsReportDto.d.ts +112 -0
- package/dist/mjs/models/CreateTransactionsReportDto.js +92 -0
- package/dist/mjs/models/CreateTransactionsReportsFiltersDto.d.ts +151 -0
- package/dist/mjs/models/CreateTransactionsReportsFiltersDto.js +119 -0
- package/dist/mjs/models/CreateTransactionsReportsScheduleDto.d.ts +121 -0
- package/dist/mjs/models/CreateTransactionsReportsScheduleDto.js +100 -0
- package/dist/mjs/models/CreateTransactionsReportsTemplateDto.d.ts +94 -0
- package/dist/mjs/models/CreateTransactionsReportsTemplateDto.js +83 -0
- package/dist/mjs/models/ReportCreatorEntity.d.ts +32 -0
- package/dist/mjs/models/ReportCreatorEntity.js +43 -0
- package/dist/mjs/models/TransactionsRecordEntity.d.ts +303 -0
- package/dist/mjs/models/TransactionsRecordEntity.js +181 -0
- package/dist/mjs/models/TransactionsReportEntity.d.ts +171 -0
- package/dist/mjs/models/TransactionsReportEntity.js +126 -0
- package/dist/mjs/models/TransactionsReportScheduleEntity.d.ts +176 -0
- package/dist/mjs/models/TransactionsReportScheduleEntity.js +124 -0
- package/dist/mjs/models/TransactionsReportSchedulesSearchQueryResponseEntity.d.ts +69 -0
- package/dist/mjs/models/TransactionsReportSchedulesSearchQueryResponseEntity.js +60 -0
- package/dist/mjs/models/TransactionsReportTemplateEntity.d.ts +156 -0
- package/dist/mjs/models/TransactionsReportTemplateEntity.js +114 -0
- package/dist/mjs/models/TransactionsReportTemplatesSearchQueryResponseEntity.d.ts +69 -0
- package/dist/mjs/models/TransactionsReportTemplatesSearchQueryResponseEntity.js +60 -0
- package/dist/mjs/models/TransactionsReportsFiltersEntity.d.ts +151 -0
- package/dist/mjs/models/TransactionsReportsFiltersEntity.js +119 -0
- package/dist/mjs/models/TransactionsReportsSearchQueryResponseEntity.d.ts +69 -0
- package/dist/mjs/models/TransactionsReportsSearchQueryResponseEntity.js +60 -0
- package/dist/mjs/models/UpdateTransactionsReportsScheduleDto.d.ts +127 -0
- package/dist/mjs/models/UpdateTransactionsReportsScheduleDto.js +94 -0
- package/dist/mjs/models/UpdateTransactionsReportsTemplateDto.d.ts +106 -0
- package/dist/mjs/models/UpdateTransactionsReportsTemplateDto.js +82 -0
- package/dist/mjs/models/index.d.ts +15 -0
- package/dist/mjs/models/index.js +15 -0
- package/dist/mjs/runtime.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Channel Payments API
|
|
3
|
+
*
|
|
4
|
+
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
import type { ReportCreatorEntity } from './ReportCreatorEntity';
|
|
8
|
+
import type { TransactionsReportsFiltersEntity } from './TransactionsReportsFiltersEntity';
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @export
|
|
12
|
+
* @interface TransactionsReportTemplateEntity
|
|
13
|
+
*/
|
|
14
|
+
export interface TransactionsReportTemplateEntity {
|
|
15
|
+
/**
|
|
16
|
+
* The report template ID.
|
|
17
|
+
* @type {string}
|
|
18
|
+
* @memberof TransactionsReportTemplateEntity
|
|
19
|
+
*/
|
|
20
|
+
reportTemplateId: string;
|
|
21
|
+
/**
|
|
22
|
+
* The merchant ID that stores this report template.
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof TransactionsReportTemplateEntity
|
|
25
|
+
*/
|
|
26
|
+
merchantId?: string;
|
|
27
|
+
/**
|
|
28
|
+
* The user creator of this report template.
|
|
29
|
+
* @type {ReportCreatorEntity}
|
|
30
|
+
* @memberof TransactionsReportTemplateEntity
|
|
31
|
+
*/
|
|
32
|
+
createdBy: ReportCreatorEntity;
|
|
33
|
+
/**
|
|
34
|
+
* Indicate the resource used for this report template.
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof TransactionsReportTemplateEntity
|
|
37
|
+
*/
|
|
38
|
+
reportDomain: TransactionsReportTemplateEntityReportDomainEnum;
|
|
39
|
+
/**
|
|
40
|
+
* Whether the report template is marked as favorite or not.
|
|
41
|
+
* @type {boolean}
|
|
42
|
+
* @memberof TransactionsReportTemplateEntity
|
|
43
|
+
*/
|
|
44
|
+
isFavorite: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* The report template name.
|
|
47
|
+
* @type {string}
|
|
48
|
+
* @memberof TransactionsReportTemplateEntity
|
|
49
|
+
*/
|
|
50
|
+
name: string;
|
|
51
|
+
/**
|
|
52
|
+
* The report template description.
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof TransactionsReportTemplateEntity
|
|
55
|
+
*/
|
|
56
|
+
description?: string;
|
|
57
|
+
/**
|
|
58
|
+
* The sorting type.
|
|
59
|
+
* @type {string}
|
|
60
|
+
* @memberof TransactionsReportTemplateEntity
|
|
61
|
+
*/
|
|
62
|
+
order?: TransactionsReportTemplateEntityOrderEnum;
|
|
63
|
+
/**
|
|
64
|
+
* The report template creation date.
|
|
65
|
+
* @type {Date}
|
|
66
|
+
* @memberof TransactionsReportTemplateEntity
|
|
67
|
+
*/
|
|
68
|
+
createdAt: Date;
|
|
69
|
+
/**
|
|
70
|
+
* The report template last update date.
|
|
71
|
+
* @type {Date}
|
|
72
|
+
* @memberof TransactionsReportTemplateEntity
|
|
73
|
+
*/
|
|
74
|
+
updatedAt: Date;
|
|
75
|
+
/**
|
|
76
|
+
* Whether the report template record is deleted or not.
|
|
77
|
+
* @type {boolean}
|
|
78
|
+
* @memberof TransactionsReportTemplateEntity
|
|
79
|
+
*/
|
|
80
|
+
deleted?: boolean;
|
|
81
|
+
/**
|
|
82
|
+
* The report template deletion date.
|
|
83
|
+
* @type {Date}
|
|
84
|
+
* @memberof TransactionsReportTemplateEntity
|
|
85
|
+
*/
|
|
86
|
+
deletedAt?: Date;
|
|
87
|
+
/**
|
|
88
|
+
* The date range applied for this report template.
|
|
89
|
+
* @type {string}
|
|
90
|
+
* @memberof TransactionsReportTemplateEntity
|
|
91
|
+
*/
|
|
92
|
+
dateRange: TransactionsReportTemplateEntityDateRangeEnum;
|
|
93
|
+
/**
|
|
94
|
+
* The start time for this report template.
|
|
95
|
+
* @type {string}
|
|
96
|
+
* @memberof TransactionsReportTemplateEntity
|
|
97
|
+
*/
|
|
98
|
+
startTime: string;
|
|
99
|
+
/**
|
|
100
|
+
* The end time for this report template.
|
|
101
|
+
* @type {string}
|
|
102
|
+
* @memberof TransactionsReportTemplateEntity
|
|
103
|
+
*/
|
|
104
|
+
endTime: string;
|
|
105
|
+
/**
|
|
106
|
+
* The columns associated to this report template.
|
|
107
|
+
* @type {Array<string>}
|
|
108
|
+
* @memberof TransactionsReportTemplateEntity
|
|
109
|
+
*/
|
|
110
|
+
columns: Array<string>;
|
|
111
|
+
/**
|
|
112
|
+
* The filters associated to this report template.
|
|
113
|
+
* @type {TransactionsReportsFiltersEntity}
|
|
114
|
+
* @memberof TransactionsReportTemplateEntity
|
|
115
|
+
*/
|
|
116
|
+
transactionsFilters: TransactionsReportsFiltersEntity;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* @export
|
|
120
|
+
*/
|
|
121
|
+
export declare const TransactionsReportTemplateEntityReportDomainEnum: {
|
|
122
|
+
readonly Transactions: "TRANSACTIONS";
|
|
123
|
+
};
|
|
124
|
+
export type TransactionsReportTemplateEntityReportDomainEnum = typeof TransactionsReportTemplateEntityReportDomainEnum[keyof typeof TransactionsReportTemplateEntityReportDomainEnum];
|
|
125
|
+
/**
|
|
126
|
+
* @export
|
|
127
|
+
*/
|
|
128
|
+
export declare const TransactionsReportTemplateEntityOrderEnum: {
|
|
129
|
+
readonly Asc: "asc";
|
|
130
|
+
readonly Desc: "desc";
|
|
131
|
+
};
|
|
132
|
+
export type TransactionsReportTemplateEntityOrderEnum = typeof TransactionsReportTemplateEntityOrderEnum[keyof typeof TransactionsReportTemplateEntityOrderEnum];
|
|
133
|
+
/**
|
|
134
|
+
* @export
|
|
135
|
+
*/
|
|
136
|
+
export declare const TransactionsReportTemplateEntityDateRangeEnum: {
|
|
137
|
+
readonly Today: "TODAY";
|
|
138
|
+
readonly Yesterday: "YESTERDAY";
|
|
139
|
+
readonly Last7Days: "LAST_7_DAYS";
|
|
140
|
+
readonly Last30Days: "LAST_30_DAYS";
|
|
141
|
+
readonly Last60Days: "LAST_60_DAYS";
|
|
142
|
+
readonly Last90Days: "LAST_90_DAYS";
|
|
143
|
+
readonly LastWeek: "LAST_WEEK";
|
|
144
|
+
readonly LastMonth: "LAST_MONTH";
|
|
145
|
+
readonly LastQuarter: "LAST_QUARTER";
|
|
146
|
+
readonly LastYear: "LAST_YEAR";
|
|
147
|
+
readonly Custom: "CUSTOM";
|
|
148
|
+
};
|
|
149
|
+
export type TransactionsReportTemplateEntityDateRangeEnum = typeof TransactionsReportTemplateEntityDateRangeEnum[keyof typeof TransactionsReportTemplateEntityDateRangeEnum];
|
|
150
|
+
/**
|
|
151
|
+
* Check if a given object implements the TransactionsReportTemplateEntity interface.
|
|
152
|
+
*/
|
|
153
|
+
export declare function instanceOfTransactionsReportTemplateEntity(value: object): boolean;
|
|
154
|
+
export declare function TransactionsReportTemplateEntityFromJSON(json: any): TransactionsReportTemplateEntity;
|
|
155
|
+
export declare function TransactionsReportTemplateEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionsReportTemplateEntity;
|
|
156
|
+
export declare function TransactionsReportTemplateEntityToJSON(value?: TransactionsReportTemplateEntity | null): any;
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Channel Payments API
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.TransactionsReportTemplateEntityDateRangeEnum = exports.TransactionsReportTemplateEntityOrderEnum = exports.TransactionsReportTemplateEntityReportDomainEnum = void 0;
|
|
12
|
+
exports.instanceOfTransactionsReportTemplateEntity = instanceOfTransactionsReportTemplateEntity;
|
|
13
|
+
exports.TransactionsReportTemplateEntityFromJSON = TransactionsReportTemplateEntityFromJSON;
|
|
14
|
+
exports.TransactionsReportTemplateEntityFromJSONTyped = TransactionsReportTemplateEntityFromJSONTyped;
|
|
15
|
+
exports.TransactionsReportTemplateEntityToJSON = TransactionsReportTemplateEntityToJSON;
|
|
16
|
+
const runtime_1 = require("../runtime");
|
|
17
|
+
const ReportCreatorEntity_1 = require("./ReportCreatorEntity");
|
|
18
|
+
const TransactionsReportsFiltersEntity_1 = require("./TransactionsReportsFiltersEntity");
|
|
19
|
+
/**
|
|
20
|
+
* @export
|
|
21
|
+
*/
|
|
22
|
+
exports.TransactionsReportTemplateEntityReportDomainEnum = {
|
|
23
|
+
Transactions: 'TRANSACTIONS'
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @export
|
|
27
|
+
*/
|
|
28
|
+
exports.TransactionsReportTemplateEntityOrderEnum = {
|
|
29
|
+
Asc: 'asc',
|
|
30
|
+
Desc: 'desc'
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* @export
|
|
34
|
+
*/
|
|
35
|
+
exports.TransactionsReportTemplateEntityDateRangeEnum = {
|
|
36
|
+
Today: 'TODAY',
|
|
37
|
+
Yesterday: 'YESTERDAY',
|
|
38
|
+
Last7Days: 'LAST_7_DAYS',
|
|
39
|
+
Last30Days: 'LAST_30_DAYS',
|
|
40
|
+
Last60Days: 'LAST_60_DAYS',
|
|
41
|
+
Last90Days: 'LAST_90_DAYS',
|
|
42
|
+
LastWeek: 'LAST_WEEK',
|
|
43
|
+
LastMonth: 'LAST_MONTH',
|
|
44
|
+
LastQuarter: 'LAST_QUARTER',
|
|
45
|
+
LastYear: 'LAST_YEAR',
|
|
46
|
+
Custom: 'CUSTOM'
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Check if a given object implements the TransactionsReportTemplateEntity interface.
|
|
50
|
+
*/
|
|
51
|
+
function instanceOfTransactionsReportTemplateEntity(value) {
|
|
52
|
+
let isInstance = true;
|
|
53
|
+
isInstance = isInstance && "reportTemplateId" in value;
|
|
54
|
+
isInstance = isInstance && "createdBy" in value;
|
|
55
|
+
isInstance = isInstance && "reportDomain" in value;
|
|
56
|
+
isInstance = isInstance && "isFavorite" in value;
|
|
57
|
+
isInstance = isInstance && "name" in value;
|
|
58
|
+
isInstance = isInstance && "createdAt" in value;
|
|
59
|
+
isInstance = isInstance && "updatedAt" in value;
|
|
60
|
+
isInstance = isInstance && "dateRange" in value;
|
|
61
|
+
isInstance = isInstance && "startTime" in value;
|
|
62
|
+
isInstance = isInstance && "endTime" in value;
|
|
63
|
+
isInstance = isInstance && "columns" in value;
|
|
64
|
+
isInstance = isInstance && "transactionsFilters" in value;
|
|
65
|
+
return isInstance;
|
|
66
|
+
}
|
|
67
|
+
function TransactionsReportTemplateEntityFromJSON(json) {
|
|
68
|
+
return TransactionsReportTemplateEntityFromJSONTyped(json, false);
|
|
69
|
+
}
|
|
70
|
+
function TransactionsReportTemplateEntityFromJSONTyped(json, ignoreDiscriminator) {
|
|
71
|
+
if ((json === undefined) || (json === null)) {
|
|
72
|
+
return json;
|
|
73
|
+
}
|
|
74
|
+
const typed = {
|
|
75
|
+
'reportTemplateId': json['reportTemplateId'],
|
|
76
|
+
'merchantId': !(0, runtime_1.exists)(json, 'merchantId') ? undefined : json['merchantId'],
|
|
77
|
+
'createdBy': (0, ReportCreatorEntity_1.ReportCreatorEntityFromJSON)(json['createdBy']),
|
|
78
|
+
'reportDomain': json['reportDomain'],
|
|
79
|
+
'isFavorite': json['isFavorite'],
|
|
80
|
+
'name': json['name'],
|
|
81
|
+
'description': !(0, runtime_1.exists)(json, 'description') ? undefined : json['description'],
|
|
82
|
+
'order': !(0, runtime_1.exists)(json, 'order') ? undefined : json['order'],
|
|
83
|
+
'createdAt': (new Date(json['createdAt'])),
|
|
84
|
+
'updatedAt': (new Date(json['updatedAt'])),
|
|
85
|
+
'deleted': !(0, runtime_1.exists)(json, 'deleted') ? undefined : json['deleted'],
|
|
86
|
+
'deletedAt': !(0, runtime_1.exists)(json, 'deletedAt') ? undefined : (new Date(json['deletedAt'])),
|
|
87
|
+
'dateRange': json['dateRange'],
|
|
88
|
+
'startTime': json['startTime'],
|
|
89
|
+
'endTime': json['endTime'],
|
|
90
|
+
'columns': json['columns'],
|
|
91
|
+
'transactionsFilters': (0, TransactionsReportsFiltersEntity_1.TransactionsReportsFiltersEntityFromJSON)(json['transactionsFilters']),
|
|
92
|
+
};
|
|
93
|
+
return (0, runtime_1.removeNullUndefined)(typed);
|
|
94
|
+
}
|
|
95
|
+
function TransactionsReportTemplateEntityToJSON(value) {
|
|
96
|
+
if (value === undefined) {
|
|
97
|
+
return undefined;
|
|
98
|
+
}
|
|
99
|
+
if (value === null) {
|
|
100
|
+
return null;
|
|
101
|
+
}
|
|
102
|
+
return {
|
|
103
|
+
'reportTemplateId': value.reportTemplateId,
|
|
104
|
+
'merchantId': value.merchantId,
|
|
105
|
+
'createdBy': (0, ReportCreatorEntity_1.ReportCreatorEntityToJSON)(value.createdBy),
|
|
106
|
+
'reportDomain': value.reportDomain,
|
|
107
|
+
'isFavorite': value.isFavorite,
|
|
108
|
+
'name': value.name,
|
|
109
|
+
'description': value.description,
|
|
110
|
+
'order': value.order,
|
|
111
|
+
'createdAt': (value.createdAt.toISOString()),
|
|
112
|
+
'updatedAt': (value.updatedAt.toISOString()),
|
|
113
|
+
'deleted': value.deleted,
|
|
114
|
+
'deletedAt': value.deletedAt === undefined ? undefined : (value.deletedAt.toISOString()),
|
|
115
|
+
'dateRange': value.dateRange,
|
|
116
|
+
'startTime': value.startTime,
|
|
117
|
+
'endTime': value.endTime,
|
|
118
|
+
'columns': value.columns,
|
|
119
|
+
'transactionsFilters': (0, TransactionsReportsFiltersEntity_1.TransactionsReportsFiltersEntityToJSON)(value.transactionsFilters),
|
|
120
|
+
};
|
|
121
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Channel Payments API
|
|
3
|
+
*
|
|
4
|
+
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
import type { TransactionsReportTemplateEntity } from './TransactionsReportTemplateEntity';
|
|
8
|
+
/**
|
|
9
|
+
*
|
|
10
|
+
* @export
|
|
11
|
+
* @interface TransactionsReportTemplatesSearchQueryResponseEntity
|
|
12
|
+
*/
|
|
13
|
+
export interface TransactionsReportTemplatesSearchQueryResponseEntity {
|
|
14
|
+
/**
|
|
15
|
+
* The number of records returned.
|
|
16
|
+
* @type {number}
|
|
17
|
+
* @memberof TransactionsReportTemplatesSearchQueryResponseEntity
|
|
18
|
+
*/
|
|
19
|
+
limit: number;
|
|
20
|
+
/**
|
|
21
|
+
* The page number.
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof TransactionsReportTemplatesSearchQueryResponseEntity
|
|
24
|
+
*/
|
|
25
|
+
page: number;
|
|
26
|
+
/**
|
|
27
|
+
* The number of pages.
|
|
28
|
+
* @type {number}
|
|
29
|
+
* @memberof TransactionsReportTemplatesSearchQueryResponseEntity
|
|
30
|
+
*/
|
|
31
|
+
pageCount: number;
|
|
32
|
+
/**
|
|
33
|
+
* The total number of records.
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof TransactionsReportTemplatesSearchQueryResponseEntity
|
|
36
|
+
*/
|
|
37
|
+
totalCount: number;
|
|
38
|
+
/**
|
|
39
|
+
* The total number of records returned.
|
|
40
|
+
* @type {number}
|
|
41
|
+
* @memberof TransactionsReportTemplatesSearchQueryResponseEntity
|
|
42
|
+
*/
|
|
43
|
+
filteredCount: number;
|
|
44
|
+
/**
|
|
45
|
+
* The next cursor.
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof TransactionsReportTemplatesSearchQueryResponseEntity
|
|
48
|
+
*/
|
|
49
|
+
nextCursor?: string;
|
|
50
|
+
/**
|
|
51
|
+
* The previous cursor
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof TransactionsReportTemplatesSearchQueryResponseEntity
|
|
54
|
+
*/
|
|
55
|
+
prevCursor?: string;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {Array<TransactionsReportTemplateEntity>}
|
|
59
|
+
* @memberof TransactionsReportTemplatesSearchQueryResponseEntity
|
|
60
|
+
*/
|
|
61
|
+
items: Array<TransactionsReportTemplateEntity>;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Check if a given object implements the TransactionsReportTemplatesSearchQueryResponseEntity interface.
|
|
65
|
+
*/
|
|
66
|
+
export declare function instanceOfTransactionsReportTemplatesSearchQueryResponseEntity(value: object): boolean;
|
|
67
|
+
export declare function TransactionsReportTemplatesSearchQueryResponseEntityFromJSON(json: any): TransactionsReportTemplatesSearchQueryResponseEntity;
|
|
68
|
+
export declare function TransactionsReportTemplatesSearchQueryResponseEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionsReportTemplatesSearchQueryResponseEntity;
|
|
69
|
+
export declare function TransactionsReportTemplatesSearchQueryResponseEntityToJSON(value?: TransactionsReportTemplatesSearchQueryResponseEntity | null): any;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Channel Payments API
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.instanceOfTransactionsReportTemplatesSearchQueryResponseEntity = instanceOfTransactionsReportTemplatesSearchQueryResponseEntity;
|
|
12
|
+
exports.TransactionsReportTemplatesSearchQueryResponseEntityFromJSON = TransactionsReportTemplatesSearchQueryResponseEntityFromJSON;
|
|
13
|
+
exports.TransactionsReportTemplatesSearchQueryResponseEntityFromJSONTyped = TransactionsReportTemplatesSearchQueryResponseEntityFromJSONTyped;
|
|
14
|
+
exports.TransactionsReportTemplatesSearchQueryResponseEntityToJSON = TransactionsReportTemplatesSearchQueryResponseEntityToJSON;
|
|
15
|
+
const runtime_1 = require("../runtime");
|
|
16
|
+
const TransactionsReportTemplateEntity_1 = require("./TransactionsReportTemplateEntity");
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the TransactionsReportTemplatesSearchQueryResponseEntity interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfTransactionsReportTemplatesSearchQueryResponseEntity(value) {
|
|
21
|
+
let isInstance = true;
|
|
22
|
+
isInstance = isInstance && "limit" in value;
|
|
23
|
+
isInstance = isInstance && "page" in value;
|
|
24
|
+
isInstance = isInstance && "pageCount" in value;
|
|
25
|
+
isInstance = isInstance && "totalCount" in value;
|
|
26
|
+
isInstance = isInstance && "filteredCount" in value;
|
|
27
|
+
isInstance = isInstance && "items" in value;
|
|
28
|
+
return isInstance;
|
|
29
|
+
}
|
|
30
|
+
function TransactionsReportTemplatesSearchQueryResponseEntityFromJSON(json) {
|
|
31
|
+
return TransactionsReportTemplatesSearchQueryResponseEntityFromJSONTyped(json, false);
|
|
32
|
+
}
|
|
33
|
+
function TransactionsReportTemplatesSearchQueryResponseEntityFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
+
if ((json === undefined) || (json === null)) {
|
|
35
|
+
return json;
|
|
36
|
+
}
|
|
37
|
+
const typed = {
|
|
38
|
+
'limit': json['limit'],
|
|
39
|
+
'page': json['page'],
|
|
40
|
+
'pageCount': json['pageCount'],
|
|
41
|
+
'totalCount': json['totalCount'],
|
|
42
|
+
'filteredCount': json['filteredCount'],
|
|
43
|
+
'nextCursor': !(0, runtime_1.exists)(json, 'nextCursor') ? undefined : json['nextCursor'],
|
|
44
|
+
'prevCursor': !(0, runtime_1.exists)(json, 'prevCursor') ? undefined : json['prevCursor'],
|
|
45
|
+
'items': (json['items'].map(TransactionsReportTemplateEntity_1.TransactionsReportTemplateEntityFromJSON)),
|
|
46
|
+
};
|
|
47
|
+
return (0, runtime_1.removeNullUndefined)(typed);
|
|
48
|
+
}
|
|
49
|
+
function TransactionsReportTemplatesSearchQueryResponseEntityToJSON(value) {
|
|
50
|
+
if (value === undefined) {
|
|
51
|
+
return undefined;
|
|
52
|
+
}
|
|
53
|
+
if (value === null) {
|
|
54
|
+
return null;
|
|
55
|
+
}
|
|
56
|
+
return {
|
|
57
|
+
'limit': value.limit,
|
|
58
|
+
'page': value.page,
|
|
59
|
+
'pageCount': value.pageCount,
|
|
60
|
+
'totalCount': value.totalCount,
|
|
61
|
+
'filteredCount': value.filteredCount,
|
|
62
|
+
'nextCursor': value.nextCursor,
|
|
63
|
+
'prevCursor': value.prevCursor,
|
|
64
|
+
'items': (value.items.map(TransactionsReportTemplateEntity_1.TransactionsReportTemplateEntityToJSON)),
|
|
65
|
+
};
|
|
66
|
+
}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Channel Payments API
|
|
3
|
+
*
|
|
4
|
+
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
*
|
|
9
|
+
* @export
|
|
10
|
+
* @interface TransactionsReportsFiltersEntity
|
|
11
|
+
*/
|
|
12
|
+
export interface TransactionsReportsFiltersEntity {
|
|
13
|
+
/**
|
|
14
|
+
* Indicate the resource used for this report template.
|
|
15
|
+
* @type {Array<string>}
|
|
16
|
+
* @memberof TransactionsReportsFiltersEntity
|
|
17
|
+
*/
|
|
18
|
+
paymentMethods: Array<TransactionsReportsFiltersEntityPaymentMethodsEnum>;
|
|
19
|
+
/**
|
|
20
|
+
* Indicate the resource used for this report template.
|
|
21
|
+
* @type {Array<string>}
|
|
22
|
+
* @memberof TransactionsReportsFiltersEntity
|
|
23
|
+
*/
|
|
24
|
+
accountTypes?: Array<TransactionsReportsFiltersEntityAccountTypesEnum>;
|
|
25
|
+
/**
|
|
26
|
+
* Indicate the resource used for this report template.
|
|
27
|
+
* @type {Array<string>}
|
|
28
|
+
* @memberof TransactionsReportsFiltersEntity
|
|
29
|
+
*/
|
|
30
|
+
cardTypes?: Array<TransactionsReportsFiltersEntityCardTypesEnum>;
|
|
31
|
+
/**
|
|
32
|
+
* Indicate the resource used for this report template.
|
|
33
|
+
* @type {Array<string>}
|
|
34
|
+
* @memberof TransactionsReportsFiltersEntity
|
|
35
|
+
*/
|
|
36
|
+
cardSchemes?: Array<TransactionsReportsFiltersEntityCardSchemesEnum>;
|
|
37
|
+
/**
|
|
38
|
+
* Indicate the resource used for this report template.
|
|
39
|
+
* @type {Array<string>}
|
|
40
|
+
* @memberof TransactionsReportsFiltersEntity
|
|
41
|
+
*/
|
|
42
|
+
transactionIntents?: Array<TransactionsReportsFiltersEntityTransactionIntentsEnum>;
|
|
43
|
+
/**
|
|
44
|
+
* Indicate the resource used for this report template.
|
|
45
|
+
* @type {Array<string>}
|
|
46
|
+
* @memberof TransactionsReportsFiltersEntity
|
|
47
|
+
*/
|
|
48
|
+
transactionStatuses?: Array<TransactionsReportsFiltersEntityTransactionStatusesEnum>;
|
|
49
|
+
/**
|
|
50
|
+
* The amount of the transaction for this report.
|
|
51
|
+
* @type {number}
|
|
52
|
+
* @memberof TransactionsReportsFiltersEntity
|
|
53
|
+
*/
|
|
54
|
+
amount?: number;
|
|
55
|
+
/**
|
|
56
|
+
* Amount greater than a specified threshold for this report.
|
|
57
|
+
* @type {number}
|
|
58
|
+
* @memberof TransactionsReportsFiltersEntity
|
|
59
|
+
*/
|
|
60
|
+
amountGreaterThan?: number;
|
|
61
|
+
/**
|
|
62
|
+
* Amount less than a specified threshold for this report.
|
|
63
|
+
* @type {number}
|
|
64
|
+
* @memberof TransactionsReportsFiltersEntity
|
|
65
|
+
*/
|
|
66
|
+
amountLessThan?: number;
|
|
67
|
+
/**
|
|
68
|
+
* The min amount for a specified range in this report.
|
|
69
|
+
* @type {number}
|
|
70
|
+
* @memberof TransactionsReportsFiltersEntity
|
|
71
|
+
*/
|
|
72
|
+
amountMin?: number;
|
|
73
|
+
/**
|
|
74
|
+
* The max amount for a specified range in this report.
|
|
75
|
+
* @type {number}
|
|
76
|
+
* @memberof TransactionsReportsFiltersEntity
|
|
77
|
+
*/
|
|
78
|
+
amountMax?: number;
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* @export
|
|
82
|
+
*/
|
|
83
|
+
export declare const TransactionsReportsFiltersEntityPaymentMethodsEnum: {
|
|
84
|
+
readonly Card: "CARD";
|
|
85
|
+
readonly Bank: "BANK";
|
|
86
|
+
};
|
|
87
|
+
export type TransactionsReportsFiltersEntityPaymentMethodsEnum = typeof TransactionsReportsFiltersEntityPaymentMethodsEnum[keyof typeof TransactionsReportsFiltersEntityPaymentMethodsEnum];
|
|
88
|
+
/**
|
|
89
|
+
* @export
|
|
90
|
+
*/
|
|
91
|
+
export declare const TransactionsReportsFiltersEntityAccountTypesEnum: {
|
|
92
|
+
readonly Checking: "CHECKING";
|
|
93
|
+
readonly Savings: "SAVINGS";
|
|
94
|
+
};
|
|
95
|
+
export type TransactionsReportsFiltersEntityAccountTypesEnum = typeof TransactionsReportsFiltersEntityAccountTypesEnum[keyof typeof TransactionsReportsFiltersEntityAccountTypesEnum];
|
|
96
|
+
/**
|
|
97
|
+
* @export
|
|
98
|
+
*/
|
|
99
|
+
export declare const TransactionsReportsFiltersEntityCardTypesEnum: {
|
|
100
|
+
readonly Credit: "CREDIT";
|
|
101
|
+
readonly Debit: "DEBIT";
|
|
102
|
+
readonly Prepaid: "PREPAID";
|
|
103
|
+
};
|
|
104
|
+
export type TransactionsReportsFiltersEntityCardTypesEnum = typeof TransactionsReportsFiltersEntityCardTypesEnum[keyof typeof TransactionsReportsFiltersEntityCardTypesEnum];
|
|
105
|
+
/**
|
|
106
|
+
* @export
|
|
107
|
+
*/
|
|
108
|
+
export declare const TransactionsReportsFiltersEntityCardSchemesEnum: {
|
|
109
|
+
readonly Visa: "visa";
|
|
110
|
+
readonly Mastercard: "mastercard";
|
|
111
|
+
readonly Amex: "amex";
|
|
112
|
+
readonly Discover: "discover";
|
|
113
|
+
readonly Jcb: "jcb";
|
|
114
|
+
readonly DinersClub: "diners_club";
|
|
115
|
+
readonly Maestro: "maestro";
|
|
116
|
+
};
|
|
117
|
+
export type TransactionsReportsFiltersEntityCardSchemesEnum = typeof TransactionsReportsFiltersEntityCardSchemesEnum[keyof typeof TransactionsReportsFiltersEntityCardSchemesEnum];
|
|
118
|
+
/**
|
|
119
|
+
* @export
|
|
120
|
+
*/
|
|
121
|
+
export declare const TransactionsReportsFiltersEntityTransactionIntentsEnum: {
|
|
122
|
+
readonly Capture: "capture";
|
|
123
|
+
readonly Authorize: "authorize";
|
|
124
|
+
readonly Debit: "debit";
|
|
125
|
+
readonly Credit: "credit";
|
|
126
|
+
};
|
|
127
|
+
export type TransactionsReportsFiltersEntityTransactionIntentsEnum = typeof TransactionsReportsFiltersEntityTransactionIntentsEnum[keyof typeof TransactionsReportsFiltersEntityTransactionIntentsEnum];
|
|
128
|
+
/**
|
|
129
|
+
* @export
|
|
130
|
+
*/
|
|
131
|
+
export declare const TransactionsReportsFiltersEntityTransactionStatusesEnum: {
|
|
132
|
+
readonly Authorized: "authorized";
|
|
133
|
+
readonly AuthorizationFailed: "authorizationFailed";
|
|
134
|
+
readonly Declined: "declined";
|
|
135
|
+
readonly Captured: "captured";
|
|
136
|
+
readonly Voided: "voided";
|
|
137
|
+
readonly Hold: "hold";
|
|
138
|
+
readonly Submitted: "submitted";
|
|
139
|
+
readonly Transmitted: "transmitted";
|
|
140
|
+
readonly Settled: "settled";
|
|
141
|
+
readonly Returned: "returned";
|
|
142
|
+
readonly Rejected: "rejected";
|
|
143
|
+
};
|
|
144
|
+
export type TransactionsReportsFiltersEntityTransactionStatusesEnum = typeof TransactionsReportsFiltersEntityTransactionStatusesEnum[keyof typeof TransactionsReportsFiltersEntityTransactionStatusesEnum];
|
|
145
|
+
/**
|
|
146
|
+
* Check if a given object implements the TransactionsReportsFiltersEntity interface.
|
|
147
|
+
*/
|
|
148
|
+
export declare function instanceOfTransactionsReportsFiltersEntity(value: object): boolean;
|
|
149
|
+
export declare function TransactionsReportsFiltersEntityFromJSON(json: any): TransactionsReportsFiltersEntity;
|
|
150
|
+
export declare function TransactionsReportsFiltersEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionsReportsFiltersEntity;
|
|
151
|
+
export declare function TransactionsReportsFiltersEntityToJSON(value?: TransactionsReportsFiltersEntity | null): any;
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Channel Payments API
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.TransactionsReportsFiltersEntityTransactionStatusesEnum = exports.TransactionsReportsFiltersEntityTransactionIntentsEnum = exports.TransactionsReportsFiltersEntityCardSchemesEnum = exports.TransactionsReportsFiltersEntityCardTypesEnum = exports.TransactionsReportsFiltersEntityAccountTypesEnum = exports.TransactionsReportsFiltersEntityPaymentMethodsEnum = void 0;
|
|
12
|
+
exports.instanceOfTransactionsReportsFiltersEntity = instanceOfTransactionsReportsFiltersEntity;
|
|
13
|
+
exports.TransactionsReportsFiltersEntityFromJSON = TransactionsReportsFiltersEntityFromJSON;
|
|
14
|
+
exports.TransactionsReportsFiltersEntityFromJSONTyped = TransactionsReportsFiltersEntityFromJSONTyped;
|
|
15
|
+
exports.TransactionsReportsFiltersEntityToJSON = TransactionsReportsFiltersEntityToJSON;
|
|
16
|
+
const runtime_1 = require("../runtime");
|
|
17
|
+
/**
|
|
18
|
+
* @export
|
|
19
|
+
*/
|
|
20
|
+
exports.TransactionsReportsFiltersEntityPaymentMethodsEnum = {
|
|
21
|
+
Card: 'CARD',
|
|
22
|
+
Bank: 'BANK'
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @export
|
|
26
|
+
*/
|
|
27
|
+
exports.TransactionsReportsFiltersEntityAccountTypesEnum = {
|
|
28
|
+
Checking: 'CHECKING',
|
|
29
|
+
Savings: 'SAVINGS'
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* @export
|
|
33
|
+
*/
|
|
34
|
+
exports.TransactionsReportsFiltersEntityCardTypesEnum = {
|
|
35
|
+
Credit: 'CREDIT',
|
|
36
|
+
Debit: 'DEBIT',
|
|
37
|
+
Prepaid: 'PREPAID'
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* @export
|
|
41
|
+
*/
|
|
42
|
+
exports.TransactionsReportsFiltersEntityCardSchemesEnum = {
|
|
43
|
+
Visa: 'visa',
|
|
44
|
+
Mastercard: 'mastercard',
|
|
45
|
+
Amex: 'amex',
|
|
46
|
+
Discover: 'discover',
|
|
47
|
+
Jcb: 'jcb',
|
|
48
|
+
DinersClub: 'diners_club',
|
|
49
|
+
Maestro: 'maestro'
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* @export
|
|
53
|
+
*/
|
|
54
|
+
exports.TransactionsReportsFiltersEntityTransactionIntentsEnum = {
|
|
55
|
+
Capture: 'capture',
|
|
56
|
+
Authorize: 'authorize',
|
|
57
|
+
Debit: 'debit',
|
|
58
|
+
Credit: 'credit'
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* @export
|
|
62
|
+
*/
|
|
63
|
+
exports.TransactionsReportsFiltersEntityTransactionStatusesEnum = {
|
|
64
|
+
Authorized: 'authorized',
|
|
65
|
+
AuthorizationFailed: 'authorizationFailed',
|
|
66
|
+
Declined: 'declined',
|
|
67
|
+
Captured: 'captured',
|
|
68
|
+
Voided: 'voided',
|
|
69
|
+
Hold: 'hold',
|
|
70
|
+
Submitted: 'submitted',
|
|
71
|
+
Transmitted: 'transmitted',
|
|
72
|
+
Settled: 'settled',
|
|
73
|
+
Returned: 'returned',
|
|
74
|
+
Rejected: 'rejected'
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* Check if a given object implements the TransactionsReportsFiltersEntity interface.
|
|
78
|
+
*/
|
|
79
|
+
function instanceOfTransactionsReportsFiltersEntity(value) {
|
|
80
|
+
let isInstance = true;
|
|
81
|
+
isInstance = isInstance && "paymentMethods" in value;
|
|
82
|
+
return isInstance;
|
|
83
|
+
}
|
|
84
|
+
function TransactionsReportsFiltersEntityFromJSON(json) {
|
|
85
|
+
return TransactionsReportsFiltersEntityFromJSONTyped(json, false);
|
|
86
|
+
}
|
|
87
|
+
function TransactionsReportsFiltersEntityFromJSONTyped(json, ignoreDiscriminator) {
|
|
88
|
+
if ((json === undefined) || (json === null)) {
|
|
89
|
+
return json;
|
|
90
|
+
}
|
|
91
|
+
const typed = {
|
|
92
|
+
'paymentMethods': json['paymentMethods'],
|
|
93
|
+
'accountTypes': !(0, runtime_1.exists)(json, 'accountTypes') ? undefined : json['accountTypes'],
|
|
94
|
+
'cardTypes': !(0, runtime_1.exists)(json, 'cardTypes') ? undefined : json['cardTypes'],
|
|
95
|
+
'cardSchemes': !(0, runtime_1.exists)(json, 'cardSchemes') ? undefined : json['cardSchemes'],
|
|
96
|
+
'transactionIntents': !(0, runtime_1.exists)(json, 'transactionIntents') ? undefined : json['transactionIntents'],
|
|
97
|
+
'transactionStatuses': !(0, runtime_1.exists)(json, 'transactionStatuses') ? undefined : json['transactionStatuses'],
|
|
98
|
+
'amount': !(0, runtime_1.exists)(json, 'amount') ? undefined : json['amount'],
|
|
99
|
+
'amountGreaterThan': !(0, runtime_1.exists)(json, 'amountGreaterThan') ? undefined : json['amountGreaterThan'],
|
|
100
|
+
'amountLessThan': !(0, runtime_1.exists)(json, 'amountLessThan') ? undefined : json['amountLessThan'],
|
|
101
|
+
'amountMin': !(0, runtime_1.exists)(json, 'amountMin') ? undefined : json['amountMin'],
|
|
102
|
+
'amountMax': !(0, runtime_1.exists)(json, 'amountMax') ? undefined : json['amountMax'],
|
|
103
|
+
};
|
|
104
|
+
return (0, runtime_1.removeNullUndefined)(typed);
|
|
105
|
+
}
|
|
106
|
+
function TransactionsReportsFiltersEntityToJSON(value) {
|
|
107
|
+
if (value === undefined) {
|
|
108
|
+
return undefined;
|
|
109
|
+
}
|
|
110
|
+
if (value === null) {
|
|
111
|
+
return null;
|
|
112
|
+
}
|
|
113
|
+
return {
|
|
114
|
+
'paymentMethods': value.paymentMethods,
|
|
115
|
+
'accountTypes': value.accountTypes,
|
|
116
|
+
'cardTypes': value.cardTypes,
|
|
117
|
+
'cardSchemes': value.cardSchemes,
|
|
118
|
+
'transactionIntents': value.transactionIntents,
|
|
119
|
+
'transactionStatuses': value.transactionStatuses,
|
|
120
|
+
'amount': value.amount,
|
|
121
|
+
'amountGreaterThan': value.amountGreaterThan,
|
|
122
|
+
'amountLessThan': value.amountLessThan,
|
|
123
|
+
'amountMin': value.amountMin,
|
|
124
|
+
'amountMax': value.amountMax,
|
|
125
|
+
};
|
|
126
|
+
}
|