@sp-api-sdk/finances-api-v0 1.9.3 → 1.9.6
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/src/api-model/api/default-api.js +4 -4
- package/dist/es/src/api-model/api/default-api.js +4 -4
- package/dist/types/src/api-model/api/default-api.d.ts +20 -20
- package/dist/types/src/api-model/base.d.ts +2 -2
- package/dist/types/src/api-model/common.d.ts +7 -7
- package/dist/types/src/api-model/models/adjustment-event.d.ts +4 -4
- package/dist/types/src/api-model/models/adjustment-item.d.ts +7 -7
- package/dist/types/src/api-model/models/affordability-expense-event.d.ts +9 -9
- package/dist/types/src/api-model/models/charge-component.d.ts +2 -2
- package/dist/types/src/api-model/models/charge-instrument.d.ts +3 -3
- package/dist/types/src/api-model/models/coupon-payment-event.d.ts +8 -8
- package/dist/types/src/api-model/models/currency.d.ts +2 -2
- package/dist/types/src/api-model/models/debt-recovery-event.d.ts +5 -5
- package/dist/types/src/api-model/models/debt-recovery-item.d.ts +4 -4
- package/dist/types/src/api-model/models/direct-payment.d.ts +2 -2
- package/dist/types/src/api-model/models/fbaliquidation-event.d.ts +4 -4
- package/dist/types/src/api-model/models/fee-component.d.ts +2 -2
- package/dist/types/src/api-model/models/financial-event-group.d.ts +11 -11
- package/dist/types/src/api-model/models/financial-events.d.ts +27 -27
- package/dist/types/src/api-model/models/imaging-services-fee-event.d.ts +4 -4
- package/dist/types/src/api-model/models/list-financial-event-groups-payload.d.ts +2 -2
- package/dist/types/src/api-model/models/list-financial-event-groups-response.d.ts +2 -2
- package/dist/types/src/api-model/models/list-financial-events-payload.d.ts +2 -2
- package/dist/types/src/api-model/models/list-financial-events-response.d.ts +2 -2
- package/dist/types/src/api-model/models/loan-servicing-event.d.ts +2 -2
- package/dist/types/src/api-model/models/model-error.d.ts +3 -3
- package/dist/types/src/api-model/models/network-commingling-transaction-event.d.ts +8 -8
- package/dist/types/src/api-model/models/pay-with-amazon-event.d.ts +10 -10
- package/dist/types/src/api-model/models/product-ads-payment-event.d.ts +6 -6
- package/dist/types/src/api-model/models/promotion.d.ts +3 -3
- package/dist/types/src/api-model/models/removal-shipment-adjustment-event.d.ts +6 -6
- package/dist/types/src/api-model/models/removal-shipment-event.d.ts +5 -5
- package/dist/types/src/api-model/models/removal-shipment-item-adjustment.d.ts +7 -7
- package/dist/types/src/api-model/models/removal-shipment-item.d.ts +8 -8
- package/dist/types/src/api-model/models/rental-transaction-event.d.ts +10 -10
- package/dist/types/src/api-model/models/retrocharge-event.d.ts +7 -7
- package/dist/types/src/api-model/models/safetreimbursement-event.d.ts +5 -5
- package/dist/types/src/api-model/models/safetreimbursement-item.d.ts +3 -3
- package/dist/types/src/api-model/models/seller-deal-payment-event.d.ts +8 -8
- package/dist/types/src/api-model/models/seller-review-enrollment-payment-event.d.ts +6 -6
- package/dist/types/src/api-model/models/service-fee-event.d.ts +7 -7
- package/dist/types/src/api-model/models/shipment-event.d.ts +13 -13
- package/dist/types/src/api-model/models/shipment-item.d.ts +13 -13
- package/dist/types/src/api-model/models/solution-provider-credit-event.d.ts +10 -10
- package/dist/types/src/api-model/models/tax-withheld-component.d.ts +2 -2
- package/dist/types/src/api-model/models/tax-withholding-event.d.ts +4 -4
- package/dist/types/src/api-model/models/tax-withholding-period.d.ts +2 -2
- package/dist/types/src/api-model/models/trial-shipment-event.d.ts +5 -5
- package/package.json +4 -4
|
@@ -21,23 +21,23 @@ export interface FBALiquidationEvent {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof FBALiquidationEvent
|
|
23
23
|
*/
|
|
24
|
-
PostedDate?: string;
|
|
24
|
+
'PostedDate'?: string;
|
|
25
25
|
/**
|
|
26
26
|
* The identifier for the original removal order.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof FBALiquidationEvent
|
|
29
29
|
*/
|
|
30
|
-
OriginalRemovalOrderId?: string;
|
|
30
|
+
'OriginalRemovalOrderId'?: string;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {Currency}
|
|
34
34
|
* @memberof FBALiquidationEvent
|
|
35
35
|
*/
|
|
36
|
-
LiquidationProceedsAmount?: Currency;
|
|
36
|
+
'LiquidationProceedsAmount'?: Currency;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {Currency}
|
|
40
40
|
* @memberof FBALiquidationEvent
|
|
41
41
|
*/
|
|
42
|
-
LiquidationFeeAmount?: Currency;
|
|
42
|
+
'LiquidationFeeAmount'?: Currency;
|
|
43
43
|
}
|
|
@@ -21,11 +21,11 @@ export interface FeeComponent {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof FeeComponent
|
|
23
23
|
*/
|
|
24
|
-
FeeType?: string;
|
|
24
|
+
'FeeType'?: string;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
* @type {Currency}
|
|
28
28
|
* @memberof FeeComponent
|
|
29
29
|
*/
|
|
30
|
-
FeeAmount?: Currency;
|
|
30
|
+
'FeeAmount'?: Currency;
|
|
31
31
|
}
|
|
@@ -21,65 +21,65 @@ export interface FinancialEventGroup {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof FinancialEventGroup
|
|
23
23
|
*/
|
|
24
|
-
FinancialEventGroupId?: string;
|
|
24
|
+
'FinancialEventGroupId'?: string;
|
|
25
25
|
/**
|
|
26
26
|
* The processing status of the financial event group indicates whether the balance of the financial event group is settled. Possible values: * Open * Closed
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof FinancialEventGroup
|
|
29
29
|
*/
|
|
30
|
-
ProcessingStatus?: string;
|
|
30
|
+
'ProcessingStatus'?: string;
|
|
31
31
|
/**
|
|
32
32
|
* The status of the fund transfer.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof FinancialEventGroup
|
|
35
35
|
*/
|
|
36
|
-
FundTransferStatus?: string;
|
|
36
|
+
'FundTransferStatus'?: string;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {Currency}
|
|
40
40
|
* @memberof FinancialEventGroup
|
|
41
41
|
*/
|
|
42
|
-
OriginalTotal?: Currency;
|
|
42
|
+
'OriginalTotal'?: Currency;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {Currency}
|
|
46
46
|
* @memberof FinancialEventGroup
|
|
47
47
|
*/
|
|
48
|
-
ConvertedTotal?: Currency;
|
|
48
|
+
'ConvertedTotal'?: Currency;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
51
|
* @type {string}
|
|
52
52
|
* @memberof FinancialEventGroup
|
|
53
53
|
*/
|
|
54
|
-
FundTransferDate?: string;
|
|
54
|
+
'FundTransferDate'?: string;
|
|
55
55
|
/**
|
|
56
56
|
* The trace identifier used by sellers to look up transactions externally.
|
|
57
57
|
* @type {string}
|
|
58
58
|
* @memberof FinancialEventGroup
|
|
59
59
|
*/
|
|
60
|
-
TraceId?: string;
|
|
60
|
+
'TraceId'?: string;
|
|
61
61
|
/**
|
|
62
62
|
* The account tail of the payment instrument.
|
|
63
63
|
* @type {string}
|
|
64
64
|
* @memberof FinancialEventGroup
|
|
65
65
|
*/
|
|
66
|
-
AccountTail?: string;
|
|
66
|
+
'AccountTail'?: string;
|
|
67
67
|
/**
|
|
68
68
|
*
|
|
69
69
|
* @type {Currency}
|
|
70
70
|
* @memberof FinancialEventGroup
|
|
71
71
|
*/
|
|
72
|
-
BeginningBalance?: Currency;
|
|
72
|
+
'BeginningBalance'?: Currency;
|
|
73
73
|
/**
|
|
74
74
|
*
|
|
75
75
|
* @type {string}
|
|
76
76
|
* @memberof FinancialEventGroup
|
|
77
77
|
*/
|
|
78
|
-
FinancialEventGroupStart?: string;
|
|
78
|
+
'FinancialEventGroupStart'?: string;
|
|
79
79
|
/**
|
|
80
80
|
*
|
|
81
81
|
* @type {string}
|
|
82
82
|
* @memberof FinancialEventGroup
|
|
83
83
|
*/
|
|
84
|
-
FinancialEventGroupEnd?: string;
|
|
84
|
+
'FinancialEventGroupEnd'?: string;
|
|
85
85
|
}
|
|
@@ -42,161 +42,161 @@ export interface FinancialEvents {
|
|
|
42
42
|
* @type {Array<ShipmentEvent>}
|
|
43
43
|
* @memberof FinancialEvents
|
|
44
44
|
*/
|
|
45
|
-
ShipmentEventList?: Array<ShipmentEvent>;
|
|
45
|
+
'ShipmentEventList'?: Array<ShipmentEvent>;
|
|
46
46
|
/**
|
|
47
47
|
* A list of shipment event information.
|
|
48
48
|
* @type {Array<ShipmentEvent>}
|
|
49
49
|
* @memberof FinancialEvents
|
|
50
50
|
*/
|
|
51
|
-
RefundEventList?: Array<ShipmentEvent>;
|
|
51
|
+
'RefundEventList'?: Array<ShipmentEvent>;
|
|
52
52
|
/**
|
|
53
53
|
* A list of shipment event information.
|
|
54
54
|
* @type {Array<ShipmentEvent>}
|
|
55
55
|
* @memberof FinancialEvents
|
|
56
56
|
*/
|
|
57
|
-
GuaranteeClaimEventList?: Array<ShipmentEvent>;
|
|
57
|
+
'GuaranteeClaimEventList'?: Array<ShipmentEvent>;
|
|
58
58
|
/**
|
|
59
59
|
* A list of shipment event information.
|
|
60
60
|
* @type {Array<ShipmentEvent>}
|
|
61
61
|
* @memberof FinancialEvents
|
|
62
62
|
*/
|
|
63
|
-
ChargebackEventList?: Array<ShipmentEvent>;
|
|
63
|
+
'ChargebackEventList'?: Array<ShipmentEvent>;
|
|
64
64
|
/**
|
|
65
65
|
* A list of events related to the seller\'s Pay with Amazon account.
|
|
66
66
|
* @type {Array<PayWithAmazonEvent>}
|
|
67
67
|
* @memberof FinancialEvents
|
|
68
68
|
*/
|
|
69
|
-
PayWithAmazonEventList?: Array<PayWithAmazonEvent>;
|
|
69
|
+
'PayWithAmazonEventList'?: Array<PayWithAmazonEvent>;
|
|
70
70
|
/**
|
|
71
71
|
* A list of information about solution provider credits.
|
|
72
72
|
* @type {Array<SolutionProviderCreditEvent>}
|
|
73
73
|
* @memberof FinancialEvents
|
|
74
74
|
*/
|
|
75
|
-
ServiceProviderCreditEventList?: Array<SolutionProviderCreditEvent>;
|
|
75
|
+
'ServiceProviderCreditEventList'?: Array<SolutionProviderCreditEvent>;
|
|
76
76
|
/**
|
|
77
77
|
* A list of information about Retrocharge or RetrochargeReversal events.
|
|
78
78
|
* @type {Array<RetrochargeEvent>}
|
|
79
79
|
* @memberof FinancialEvents
|
|
80
80
|
*/
|
|
81
|
-
RetrochargeEventList?: Array<RetrochargeEvent>;
|
|
81
|
+
'RetrochargeEventList'?: Array<RetrochargeEvent>;
|
|
82
82
|
/**
|
|
83
83
|
* A list of rental transaction event information.
|
|
84
84
|
* @type {Array<RentalTransactionEvent>}
|
|
85
85
|
* @memberof FinancialEvents
|
|
86
86
|
*/
|
|
87
|
-
RentalTransactionEventList?: Array<RentalTransactionEvent>;
|
|
87
|
+
'RentalTransactionEventList'?: Array<RentalTransactionEvent>;
|
|
88
88
|
/**
|
|
89
89
|
* A list of sponsored products payment events.
|
|
90
90
|
* @type {Array<ProductAdsPaymentEvent>}
|
|
91
91
|
* @memberof FinancialEvents
|
|
92
92
|
*/
|
|
93
|
-
ProductAdsPaymentEventList?: Array<ProductAdsPaymentEvent>;
|
|
93
|
+
'ProductAdsPaymentEventList'?: Array<ProductAdsPaymentEvent>;
|
|
94
94
|
/**
|
|
95
95
|
* A list of information about service fee events.
|
|
96
96
|
* @type {Array<ServiceFeeEvent>}
|
|
97
97
|
* @memberof FinancialEvents
|
|
98
98
|
*/
|
|
99
|
-
ServiceFeeEventList?: Array<ServiceFeeEvent>;
|
|
99
|
+
'ServiceFeeEventList'?: Array<ServiceFeeEvent>;
|
|
100
100
|
/**
|
|
101
101
|
* A list of payment events for deal-related fees.
|
|
102
102
|
* @type {Array<SellerDealPaymentEvent>}
|
|
103
103
|
* @memberof FinancialEvents
|
|
104
104
|
*/
|
|
105
|
-
SellerDealPaymentEventList?: Array<SellerDealPaymentEvent>;
|
|
105
|
+
'SellerDealPaymentEventList'?: Array<SellerDealPaymentEvent>;
|
|
106
106
|
/**
|
|
107
107
|
* A list of debt recovery event information.
|
|
108
108
|
* @type {Array<DebtRecoveryEvent>}
|
|
109
109
|
* @memberof FinancialEvents
|
|
110
110
|
*/
|
|
111
|
-
DebtRecoveryEventList?: Array<DebtRecoveryEvent>;
|
|
111
|
+
'DebtRecoveryEventList'?: Array<DebtRecoveryEvent>;
|
|
112
112
|
/**
|
|
113
113
|
* A list of loan servicing events.
|
|
114
114
|
* @type {Array<LoanServicingEvent>}
|
|
115
115
|
* @memberof FinancialEvents
|
|
116
116
|
*/
|
|
117
|
-
LoanServicingEventList?: Array<LoanServicingEvent>;
|
|
117
|
+
'LoanServicingEventList'?: Array<LoanServicingEvent>;
|
|
118
118
|
/**
|
|
119
119
|
* A list of adjustment event information for the seller\'s account.
|
|
120
120
|
* @type {Array<AdjustmentEvent>}
|
|
121
121
|
* @memberof FinancialEvents
|
|
122
122
|
*/
|
|
123
|
-
AdjustmentEventList?: Array<AdjustmentEvent>;
|
|
123
|
+
'AdjustmentEventList'?: Array<AdjustmentEvent>;
|
|
124
124
|
/**
|
|
125
125
|
* A list of SAFETReimbursementEvents.
|
|
126
126
|
* @type {Array<SAFETReimbursementEvent>}
|
|
127
127
|
* @memberof FinancialEvents
|
|
128
128
|
*/
|
|
129
|
-
SAFETReimbursementEventList?: Array<SAFETReimbursementEvent>;
|
|
129
|
+
'SAFETReimbursementEventList'?: Array<SAFETReimbursementEvent>;
|
|
130
130
|
/**
|
|
131
131
|
* A list of information about fee events for the Early Reviewer Program.
|
|
132
132
|
* @type {Array<SellerReviewEnrollmentPaymentEvent>}
|
|
133
133
|
* @memberof FinancialEvents
|
|
134
134
|
*/
|
|
135
|
-
SellerReviewEnrollmentPaymentEventList?: Array<SellerReviewEnrollmentPaymentEvent>;
|
|
135
|
+
'SellerReviewEnrollmentPaymentEventList'?: Array<SellerReviewEnrollmentPaymentEvent>;
|
|
136
136
|
/**
|
|
137
137
|
* A list of FBA inventory liquidation payment events.
|
|
138
138
|
* @type {Array<FBALiquidationEvent>}
|
|
139
139
|
* @memberof FinancialEvents
|
|
140
140
|
*/
|
|
141
|
-
FBALiquidationEventList?: Array<FBALiquidationEvent>;
|
|
141
|
+
'FBALiquidationEventList'?: Array<FBALiquidationEvent>;
|
|
142
142
|
/**
|
|
143
143
|
* A list of coupon payment event information.
|
|
144
144
|
* @type {Array<CouponPaymentEvent>}
|
|
145
145
|
* @memberof FinancialEvents
|
|
146
146
|
*/
|
|
147
|
-
CouponPaymentEventList?: Array<CouponPaymentEvent>;
|
|
147
|
+
'CouponPaymentEventList'?: Array<CouponPaymentEvent>;
|
|
148
148
|
/**
|
|
149
149
|
* A list of fee events related to Amazon Imaging services.
|
|
150
150
|
* @type {Array<ImagingServicesFeeEvent>}
|
|
151
151
|
* @memberof FinancialEvents
|
|
152
152
|
*/
|
|
153
|
-
ImagingServicesFeeEventList?: Array<ImagingServicesFeeEvent>;
|
|
153
|
+
'ImagingServicesFeeEventList'?: Array<ImagingServicesFeeEvent>;
|
|
154
154
|
/**
|
|
155
155
|
* A list of network commingling transaction events.
|
|
156
156
|
* @type {Array<NetworkComminglingTransactionEvent>}
|
|
157
157
|
* @memberof FinancialEvents
|
|
158
158
|
*/
|
|
159
|
-
NetworkComminglingTransactionEventList?: Array<NetworkComminglingTransactionEvent>;
|
|
159
|
+
'NetworkComminglingTransactionEventList'?: Array<NetworkComminglingTransactionEvent>;
|
|
160
160
|
/**
|
|
161
161
|
* A list of expense information related to an affordability promotion.
|
|
162
162
|
* @type {Array<AffordabilityExpenseEvent>}
|
|
163
163
|
* @memberof FinancialEvents
|
|
164
164
|
*/
|
|
165
|
-
AffordabilityExpenseEventList?: Array<AffordabilityExpenseEvent>;
|
|
165
|
+
'AffordabilityExpenseEventList'?: Array<AffordabilityExpenseEvent>;
|
|
166
166
|
/**
|
|
167
167
|
* A list of expense information related to an affordability promotion.
|
|
168
168
|
* @type {Array<AffordabilityExpenseEvent>}
|
|
169
169
|
* @memberof FinancialEvents
|
|
170
170
|
*/
|
|
171
|
-
AffordabilityExpenseReversalEventList?: Array<AffordabilityExpenseEvent>;
|
|
171
|
+
'AffordabilityExpenseReversalEventList'?: Array<AffordabilityExpenseEvent>;
|
|
172
172
|
/**
|
|
173
173
|
* A list of information about trial shipment financial events.
|
|
174
174
|
* @type {Array<TrialShipmentEvent>}
|
|
175
175
|
* @memberof FinancialEvents
|
|
176
176
|
*/
|
|
177
|
-
TrialShipmentEventList?: Array<TrialShipmentEvent>;
|
|
177
|
+
'TrialShipmentEventList'?: Array<TrialShipmentEvent>;
|
|
178
178
|
/**
|
|
179
179
|
* A list of information about shipment settle financial events.
|
|
180
180
|
* @type {Array<ShipmentEvent>}
|
|
181
181
|
* @memberof FinancialEvents
|
|
182
182
|
*/
|
|
183
|
-
ShipmentSettleEventList?: Array<ShipmentEvent>;
|
|
183
|
+
'ShipmentSettleEventList'?: Array<ShipmentEvent>;
|
|
184
184
|
/**
|
|
185
185
|
* List of TaxWithholding events.
|
|
186
186
|
* @type {Array<TaxWithholdingEvent>}
|
|
187
187
|
* @memberof FinancialEvents
|
|
188
188
|
*/
|
|
189
|
-
TaxWithholdingEventList?: Array<TaxWithholdingEvent>;
|
|
189
|
+
'TaxWithholdingEventList'?: Array<TaxWithholdingEvent>;
|
|
190
190
|
/**
|
|
191
191
|
* A list of removal shipment event information.
|
|
192
192
|
* @type {Array<RemovalShipmentEvent>}
|
|
193
193
|
* @memberof FinancialEvents
|
|
194
194
|
*/
|
|
195
|
-
RemovalShipmentEventList?: Array<RemovalShipmentEvent>;
|
|
195
|
+
'RemovalShipmentEventList'?: Array<RemovalShipmentEvent>;
|
|
196
196
|
/**
|
|
197
197
|
* A comma-delimited list of Removal shipmentAdjustment details for FBA inventory.
|
|
198
198
|
* @type {Array<RemovalShipmentAdjustmentEvent>}
|
|
199
199
|
* @memberof FinancialEvents
|
|
200
200
|
*/
|
|
201
|
-
RemovalShipmentAdjustmentEventList?: Array<RemovalShipmentAdjustmentEvent>;
|
|
201
|
+
'RemovalShipmentAdjustmentEventList'?: Array<RemovalShipmentAdjustmentEvent>;
|
|
202
202
|
}
|
|
@@ -21,23 +21,23 @@ export interface ImagingServicesFeeEvent {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof ImagingServicesFeeEvent
|
|
23
23
|
*/
|
|
24
|
-
ImagingRequestBillingItemID?: string;
|
|
24
|
+
'ImagingRequestBillingItemID'?: string;
|
|
25
25
|
/**
|
|
26
26
|
* The Amazon Standard Identification Number (ASIN) of the item for which the imaging service was requested.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof ImagingServicesFeeEvent
|
|
29
29
|
*/
|
|
30
|
-
ASIN?: string;
|
|
30
|
+
'ASIN'?: string;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof ImagingServicesFeeEvent
|
|
35
35
|
*/
|
|
36
|
-
PostedDate?: string;
|
|
36
|
+
'PostedDate'?: string;
|
|
37
37
|
/**
|
|
38
38
|
* A list of fee component information.
|
|
39
39
|
* @type {Array<FeeComponent>}
|
|
40
40
|
* @memberof ImagingServicesFeeEvent
|
|
41
41
|
*/
|
|
42
|
-
FeeList?: Array<FeeComponent>;
|
|
42
|
+
'FeeList'?: Array<FeeComponent>;
|
|
43
43
|
}
|
|
@@ -21,11 +21,11 @@ export interface ListFinancialEventGroupsPayload {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof ListFinancialEventGroupsPayload
|
|
23
23
|
*/
|
|
24
|
-
NextToken?: string;
|
|
24
|
+
'NextToken'?: string;
|
|
25
25
|
/**
|
|
26
26
|
* A list of financial event group information.
|
|
27
27
|
* @type {Array<FinancialEventGroup>}
|
|
28
28
|
* @memberof ListFinancialEventGroupsPayload
|
|
29
29
|
*/
|
|
30
|
-
FinancialEventGroupList?: Array<FinancialEventGroup>;
|
|
30
|
+
'FinancialEventGroupList'?: Array<FinancialEventGroup>;
|
|
31
31
|
}
|
|
@@ -21,11 +21,11 @@ export interface ListFinancialEventGroupsResponse {
|
|
|
21
21
|
* @type {ListFinancialEventGroupsPayload}
|
|
22
22
|
* @memberof ListFinancialEventGroupsResponse
|
|
23
23
|
*/
|
|
24
|
-
payload?: ListFinancialEventGroupsPayload;
|
|
24
|
+
'payload'?: ListFinancialEventGroupsPayload;
|
|
25
25
|
/**
|
|
26
26
|
* A list of error responses returned when a request is unsuccessful.
|
|
27
27
|
* @type {Array<Error>}
|
|
28
28
|
* @memberof ListFinancialEventGroupsResponse
|
|
29
29
|
*/
|
|
30
|
-
errors?: Array<Error>;
|
|
30
|
+
'errors'?: Array<Error>;
|
|
31
31
|
}
|
|
@@ -21,11 +21,11 @@ export interface ListFinancialEventsPayload {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof ListFinancialEventsPayload
|
|
23
23
|
*/
|
|
24
|
-
NextToken?: string;
|
|
24
|
+
'NextToken'?: string;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
* @type {FinancialEvents}
|
|
28
28
|
* @memberof ListFinancialEventsPayload
|
|
29
29
|
*/
|
|
30
|
-
FinancialEvents?: FinancialEvents;
|
|
30
|
+
'FinancialEvents'?: FinancialEvents;
|
|
31
31
|
}
|
|
@@ -21,11 +21,11 @@ export interface ListFinancialEventsResponse {
|
|
|
21
21
|
* @type {ListFinancialEventsPayload}
|
|
22
22
|
* @memberof ListFinancialEventsResponse
|
|
23
23
|
*/
|
|
24
|
-
payload?: ListFinancialEventsPayload;
|
|
24
|
+
'payload'?: ListFinancialEventsPayload;
|
|
25
25
|
/**
|
|
26
26
|
* A list of error responses returned when a request is unsuccessful.
|
|
27
27
|
* @type {Array<Error>}
|
|
28
28
|
* @memberof ListFinancialEventsResponse
|
|
29
29
|
*/
|
|
30
|
-
errors?: Array<Error>;
|
|
30
|
+
'errors'?: Array<Error>;
|
|
31
31
|
}
|
|
@@ -21,11 +21,11 @@ export interface LoanServicingEvent {
|
|
|
21
21
|
* @type {Currency}
|
|
22
22
|
* @memberof LoanServicingEvent
|
|
23
23
|
*/
|
|
24
|
-
LoanAmount?: Currency;
|
|
24
|
+
'LoanAmount'?: Currency;
|
|
25
25
|
/**
|
|
26
26
|
* The type of event. Possible values: * LoanAdvance * LoanPayment * LoanRefund
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof LoanServicingEvent
|
|
29
29
|
*/
|
|
30
|
-
SourceBusinessEventType?: string;
|
|
30
|
+
'SourceBusinessEventType'?: string;
|
|
31
31
|
}
|
|
@@ -20,17 +20,17 @@ export interface ModelError {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof ModelError
|
|
22
22
|
*/
|
|
23
|
-
code: string;
|
|
23
|
+
'code': string;
|
|
24
24
|
/**
|
|
25
25
|
* A message that describes the error condition in a human-readable form.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ModelError
|
|
28
28
|
*/
|
|
29
|
-
message: string;
|
|
29
|
+
'message': string;
|
|
30
30
|
/**
|
|
31
31
|
* Additional details that can help the caller understand or fix the issue.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof ModelError
|
|
34
34
|
*/
|
|
35
|
-
details?: string;
|
|
35
|
+
'details'?: string;
|
|
36
36
|
}
|
|
@@ -21,47 +21,47 @@ export interface NetworkComminglingTransactionEvent {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof NetworkComminglingTransactionEvent
|
|
23
23
|
*/
|
|
24
|
-
TransactionType?: string;
|
|
24
|
+
'TransactionType'?: string;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof NetworkComminglingTransactionEvent
|
|
29
29
|
*/
|
|
30
|
-
PostedDate?: string;
|
|
30
|
+
'PostedDate'?: string;
|
|
31
31
|
/**
|
|
32
32
|
* The identifier for the network item swap.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof NetworkComminglingTransactionEvent
|
|
35
35
|
*/
|
|
36
|
-
NetCoTransactionID?: string;
|
|
36
|
+
'NetCoTransactionID'?: string;
|
|
37
37
|
/**
|
|
38
38
|
* The reason for the network item swap.
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof NetworkComminglingTransactionEvent
|
|
41
41
|
*/
|
|
42
|
-
SwapReason?: string;
|
|
42
|
+
'SwapReason'?: string;
|
|
43
43
|
/**
|
|
44
44
|
* The Amazon Standard Identification Number (ASIN) of the swapped item.
|
|
45
45
|
* @type {string}
|
|
46
46
|
* @memberof NetworkComminglingTransactionEvent
|
|
47
47
|
*/
|
|
48
|
-
ASIN?: string;
|
|
48
|
+
'ASIN'?: string;
|
|
49
49
|
/**
|
|
50
50
|
* The marketplace in which the event took place.
|
|
51
51
|
* @type {string}
|
|
52
52
|
* @memberof NetworkComminglingTransactionEvent
|
|
53
53
|
*/
|
|
54
|
-
MarketplaceId?: string;
|
|
54
|
+
'MarketplaceId'?: string;
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
57
57
|
* @type {Currency}
|
|
58
58
|
* @memberof NetworkComminglingTransactionEvent
|
|
59
59
|
*/
|
|
60
|
-
TaxExclusiveAmount?: Currency;
|
|
60
|
+
'TaxExclusiveAmount'?: Currency;
|
|
61
61
|
/**
|
|
62
62
|
*
|
|
63
63
|
* @type {Currency}
|
|
64
64
|
* @memberof NetworkComminglingTransactionEvent
|
|
65
65
|
*/
|
|
66
|
-
TaxAmount?: Currency;
|
|
66
|
+
'TaxAmount'?: Currency;
|
|
67
67
|
}
|
|
@@ -22,59 +22,59 @@ export interface PayWithAmazonEvent {
|
|
|
22
22
|
* @type {string}
|
|
23
23
|
* @memberof PayWithAmazonEvent
|
|
24
24
|
*/
|
|
25
|
-
SellerOrderId?: string;
|
|
25
|
+
'SellerOrderId'?: string;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
28
|
* @type {string}
|
|
29
29
|
* @memberof PayWithAmazonEvent
|
|
30
30
|
*/
|
|
31
|
-
TransactionPostedDate?: string;
|
|
31
|
+
'TransactionPostedDate'?: string;
|
|
32
32
|
/**
|
|
33
33
|
* The type of business object.
|
|
34
34
|
* @type {string}
|
|
35
35
|
* @memberof PayWithAmazonEvent
|
|
36
36
|
*/
|
|
37
|
-
BusinessObjectType?: string;
|
|
37
|
+
'BusinessObjectType'?: string;
|
|
38
38
|
/**
|
|
39
39
|
* The sales channel for the transaction.
|
|
40
40
|
* @type {string}
|
|
41
41
|
* @memberof PayWithAmazonEvent
|
|
42
42
|
*/
|
|
43
|
-
SalesChannel?: string;
|
|
43
|
+
'SalesChannel'?: string;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {ChargeComponent}
|
|
47
47
|
* @memberof PayWithAmazonEvent
|
|
48
48
|
*/
|
|
49
|
-
Charge?: ChargeComponent;
|
|
49
|
+
'Charge'?: ChargeComponent;
|
|
50
50
|
/**
|
|
51
51
|
* A list of fee component information.
|
|
52
52
|
* @type {Array<FeeComponent>}
|
|
53
53
|
* @memberof PayWithAmazonEvent
|
|
54
54
|
*/
|
|
55
|
-
FeeList?: Array<FeeComponent>;
|
|
55
|
+
'FeeList'?: Array<FeeComponent>;
|
|
56
56
|
/**
|
|
57
57
|
* The type of payment. Possible values: * Sales
|
|
58
58
|
* @type {string}
|
|
59
59
|
* @memberof PayWithAmazonEvent
|
|
60
60
|
*/
|
|
61
|
-
PaymentAmountType?: string;
|
|
61
|
+
'PaymentAmountType'?: string;
|
|
62
62
|
/**
|
|
63
63
|
* A short description of this payment event.
|
|
64
64
|
* @type {string}
|
|
65
65
|
* @memberof PayWithAmazonEvent
|
|
66
66
|
*/
|
|
67
|
-
AmountDescription?: string;
|
|
67
|
+
'AmountDescription'?: string;
|
|
68
68
|
/**
|
|
69
69
|
* The fulfillment channel. Possible values: * AFN - Amazon Fulfillment Network (Fulfillment by Amazon) * MFN - Merchant Fulfillment Network (self-fulfilled)
|
|
70
70
|
* @type {string}
|
|
71
71
|
* @memberof PayWithAmazonEvent
|
|
72
72
|
*/
|
|
73
|
-
FulfillmentChannel?: string;
|
|
73
|
+
'FulfillmentChannel'?: string;
|
|
74
74
|
/**
|
|
75
75
|
* The store name where the event occurred.
|
|
76
76
|
* @type {string}
|
|
77
77
|
* @memberof PayWithAmazonEvent
|
|
78
78
|
*/
|
|
79
|
-
StoreName?: string;
|
|
79
|
+
'StoreName'?: string;
|
|
80
80
|
}
|
|
@@ -21,35 +21,35 @@ export interface ProductAdsPaymentEvent {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof ProductAdsPaymentEvent
|
|
23
23
|
*/
|
|
24
|
-
postedDate?: string;
|
|
24
|
+
'postedDate'?: string;
|
|
25
25
|
/**
|
|
26
26
|
* Indicates if the transaction is for a charge or a refund. Possible values: * charge - Charge * refund - Refund
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof ProductAdsPaymentEvent
|
|
29
29
|
*/
|
|
30
|
-
transactionType?: string;
|
|
30
|
+
'transactionType'?: string;
|
|
31
31
|
/**
|
|
32
32
|
* Identifier for the invoice that the transaction appears in.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof ProductAdsPaymentEvent
|
|
35
35
|
*/
|
|
36
|
-
invoiceId?: string;
|
|
36
|
+
'invoiceId'?: string;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {Currency}
|
|
40
40
|
* @memberof ProductAdsPaymentEvent
|
|
41
41
|
*/
|
|
42
|
-
baseValue?: Currency;
|
|
42
|
+
'baseValue'?: Currency;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {Currency}
|
|
46
46
|
* @memberof ProductAdsPaymentEvent
|
|
47
47
|
*/
|
|
48
|
-
taxValue?: Currency;
|
|
48
|
+
'taxValue'?: Currency;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
51
|
* @type {Currency}
|
|
52
52
|
* @memberof ProductAdsPaymentEvent
|
|
53
53
|
*/
|
|
54
|
-
transactionValue?: Currency;
|
|
54
|
+
'transactionValue'?: Currency;
|
|
55
55
|
}
|
|
@@ -21,17 +21,17 @@ export interface Promotion {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof Promotion
|
|
23
23
|
*/
|
|
24
|
-
PromotionType?: string;
|
|
24
|
+
'PromotionType'?: string;
|
|
25
25
|
/**
|
|
26
26
|
* The seller-specified identifier for the promotion.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof Promotion
|
|
29
29
|
*/
|
|
30
|
-
PromotionId?: string;
|
|
30
|
+
'PromotionId'?: string;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {Currency}
|
|
34
34
|
* @memberof Promotion
|
|
35
35
|
*/
|
|
36
|
-
PromotionAmount?: Currency;
|
|
36
|
+
'PromotionAmount'?: Currency;
|
|
37
37
|
}
|
|
@@ -21,35 +21,35 @@ export interface RemovalShipmentAdjustmentEvent {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof RemovalShipmentAdjustmentEvent
|
|
23
23
|
*/
|
|
24
|
-
PostedDate?: string;
|
|
24
|
+
'PostedDate'?: string;
|
|
25
25
|
/**
|
|
26
26
|
* The unique identifier for the adjustment event.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof RemovalShipmentAdjustmentEvent
|
|
29
29
|
*/
|
|
30
|
-
AdjustmentEventId?: string;
|
|
30
|
+
'AdjustmentEventId'?: string;
|
|
31
31
|
/**
|
|
32
32
|
* The merchant removal orderId.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof RemovalShipmentAdjustmentEvent
|
|
35
35
|
*/
|
|
36
|
-
MerchantOrderId?: string;
|
|
36
|
+
'MerchantOrderId'?: string;
|
|
37
37
|
/**
|
|
38
38
|
* The orderId for shipping inventory.
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof RemovalShipmentAdjustmentEvent
|
|
41
41
|
*/
|
|
42
|
-
OrderId?: string;
|
|
42
|
+
'OrderId'?: string;
|
|
43
43
|
/**
|
|
44
44
|
* The type of removal order. Possible values: * WHOLESALE_LIQUIDATION.
|
|
45
45
|
* @type {string}
|
|
46
46
|
* @memberof RemovalShipmentAdjustmentEvent
|
|
47
47
|
*/
|
|
48
|
-
TransactionType?: string;
|
|
48
|
+
'TransactionType'?: string;
|
|
49
49
|
/**
|
|
50
50
|
* A comma-delimited list of Removal shipmentItemAdjustment details for FBA inventory.
|
|
51
51
|
* @type {Array<RemovalShipmentItemAdjustment>}
|
|
52
52
|
* @memberof RemovalShipmentAdjustmentEvent
|
|
53
53
|
*/
|
|
54
|
-
RemovalShipmentItemAdjustmentList?: Array<RemovalShipmentItemAdjustment>;
|
|
54
|
+
'RemovalShipmentItemAdjustmentList'?: Array<RemovalShipmentItemAdjustment>;
|
|
55
55
|
}
|