@sp-api-sdk/finances-api-v0 5.0.0 → 5.1.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/index.d.cts CHANGED
@@ -1,7 +1,6 @@
1
- import { ClientConfiguration, RateLimit } from '@sp-api-sdk/common';
2
- import * as axios from 'axios';
3
- import { AxiosInstance, RawAxiosRequestConfig, AxiosPromise } from 'axios';
4
-
1
+ import { ClientConfiguration, RateLimit } from "@sp-api-sdk/common";
2
+ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
3
+ //#region src/api-model/configuration.d.ts
5
4
  /**
6
5
  * Selling Partner API for Finances
7
6
  * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
@@ -14,115 +13,105 @@ import { AxiosInstance, RawAxiosRequestConfig, AxiosPromise } from 'axios';
14
13
  * Do not edit the class manually.
15
14
  */
16
15
  interface AWSv4Configuration {
17
- options?: {
18
- region?: string;
19
- service?: string;
20
- };
21
- credentials?: {
22
- accessKeyId?: string;
23
- secretAccessKey?: string;
24
- sessionToken?: string;
25
- };
16
+ options?: {
17
+ region?: string;
18
+ service?: string;
19
+ };
20
+ credentials?: {
21
+ accessKeyId?: string;
22
+ secretAccessKey?: string;
23
+ sessionToken?: string;
24
+ };
26
25
  }
27
26
  interface ConfigurationParameters {
28
- apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
29
- username?: string;
30
- password?: string;
31
- accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
32
- awsv4?: AWSv4Configuration;
33
- basePath?: string;
34
- serverIndex?: number;
35
- baseOptions?: any;
36
- formDataCtor?: new () => any;
27
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
28
+ username?: string;
29
+ password?: string;
30
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
31
+ awsv4?: AWSv4Configuration;
32
+ basePath?: string;
33
+ serverIndex?: number;
34
+ baseOptions?: any;
35
+ formDataCtor?: new () => any;
37
36
  }
38
37
  declare class Configuration {
39
- /**
40
- * parameter for apiKey security
41
- * @param name security name
42
- */
43
- apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
44
- /**
45
- * parameter for basic security
46
- */
47
- username?: string;
48
- /**
49
- * parameter for basic security
50
- */
51
- password?: string;
52
- /**
53
- * parameter for oauth2 security
54
- * @param name security name
55
- * @param scopes oauth2 scope
56
- */
57
- accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
58
- /**
59
- * parameter for aws4 signature security
60
- * @param {Object} AWS4Signature - AWS4 Signature security
61
- * @param {string} options.region - aws region
62
- * @param {string} options.service - name of the service.
63
- * @param {string} credentials.accessKeyId - aws access key id
64
- * @param {string} credentials.secretAccessKey - aws access key
65
- * @param {string} credentials.sessionToken - aws session token
66
- * @memberof Configuration
67
- */
68
- awsv4?: AWSv4Configuration;
69
- /**
70
- * override base path
71
- */
72
- basePath?: string;
73
- /**
74
- * override server index
75
- */
76
- serverIndex?: number;
77
- /**
78
- * base options for axios calls
79
- */
80
- baseOptions?: any;
81
- /**
82
- * The FormData constructor that will be used to create multipart form data
83
- * requests. You can inject this here so that execution environments that
84
- * do not support the FormData class can still run the generated client.
85
- *
86
- * @type {new () => FormData}
87
- */
88
- formDataCtor?: new () => any;
89
- constructor(param?: ConfigurationParameters);
90
- /**
91
- * Check if the given MIME is a JSON MIME.
92
- * JSON MIME examples:
93
- * application/json
94
- * application/json; charset=UTF8
95
- * APPLICATION/JSON
96
- * application/vnd.company+json
97
- * @param mime - MIME (Multipurpose Internet Mail Extensions)
98
- * @return True if the given MIME is JSON, false otherwise.
99
- */
100
- isJsonMime(mime: string): boolean;
38
+ /**
39
+ * parameter for apiKey security
40
+ * @param name security name
41
+ */
42
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
43
+ /**
44
+ * parameter for basic security
45
+ */
46
+ username?: string;
47
+ /**
48
+ * parameter for basic security
49
+ */
50
+ password?: string;
51
+ /**
52
+ * parameter for oauth2 security
53
+ * @param name security name
54
+ * @param scopes oauth2 scope
55
+ */
56
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
57
+ /**
58
+ * parameter for aws4 signature security
59
+ * @param {Object} AWS4Signature - AWS4 Signature security
60
+ * @param {string} options.region - aws region
61
+ * @param {string} options.service - name of the service.
62
+ * @param {string} credentials.accessKeyId - aws access key id
63
+ * @param {string} credentials.secretAccessKey - aws access key
64
+ * @param {string} credentials.sessionToken - aws session token
65
+ * @memberof Configuration
66
+ */
67
+ awsv4?: AWSv4Configuration;
68
+ /**
69
+ * override base path
70
+ */
71
+ basePath?: string;
72
+ /**
73
+ * override server index
74
+ */
75
+ serverIndex?: number;
76
+ /**
77
+ * base options for axios calls
78
+ */
79
+ baseOptions?: any;
80
+ /**
81
+ * The FormData constructor that will be used to create multipart form data
82
+ * requests. You can inject this here so that execution environments that
83
+ * do not support the FormData class can still run the generated client.
84
+ *
85
+ * @type {new () => FormData}
86
+ */
87
+ formDataCtor?: new () => any;
88
+ constructor(param?: ConfigurationParameters);
89
+ /**
90
+ * Check if the given MIME is a JSON MIME.
91
+ * JSON MIME examples:
92
+ * application/json
93
+ * application/json; charset=UTF8
94
+ * APPLICATION/JSON
95
+ * application/vnd.company+json
96
+ * @param mime - MIME (Multipurpose Internet Mail Extensions)
97
+ * @return True if the given MIME is JSON, false otherwise.
98
+ */
99
+ isJsonMime(mime: string): boolean;
101
100
  }
102
-
103
- /**
104
- * Selling Partner API for Finances
105
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
106
- *
107
- * The version of the OpenAPI document: v0
108
- *
109
- *
110
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
111
- * https://openapi-generator.tech
112
- * Do not edit the class manually.
113
- */
114
-
101
+ //#endregion
102
+ //#region src/api-model/base.d.ts
115
103
  interface RequestArgs {
116
- url: string;
117
- options: RawAxiosRequestConfig;
104
+ url: string;
105
+ options: RawAxiosRequestConfig;
118
106
  }
119
107
  declare class BaseAPI {
120
- protected basePath: string;
121
- protected axios: AxiosInstance;
122
- protected configuration: Configuration | undefined;
123
- constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
108
+ protected basePath: string;
109
+ protected axios: AxiosInstance;
110
+ protected configuration: Configuration | undefined;
111
+ constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
124
112
  }
125
-
113
+ //#endregion
114
+ //#region src/api-model/models/currency.d.ts
126
115
  /**
127
116
  * Selling Partner API for Finances
128
117
  * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
@@ -138,1503 +127,1064 @@ declare class BaseAPI {
138
127
  * A currency type and amount.
139
128
  */
140
129
  interface Currency {
141
- /**
142
- * The three-digit currency code in ISO 4217 format.
143
- */
144
- 'CurrencyCode'?: string;
145
- /**
146
- * A signed decimal number.
147
- */
148
- 'CurrencyAmount'?: number;
130
+ /**
131
+ * The three-digit currency code in ISO 4217 format.
132
+ */
133
+ 'CurrencyCode'?: string;
134
+ /**
135
+ * A signed decimal number.
136
+ */
137
+ 'CurrencyAmount'?: number;
149
138
  }
150
-
151
- /**
152
- * Selling Partner API for Finances
153
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
154
- *
155
- * The version of the OpenAPI document: v0
156
- *
157
- *
158
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
159
- * https://openapi-generator.tech
160
- * Do not edit the class manually.
161
- */
162
-
139
+ //#endregion
140
+ //#region src/api-model/models/adhoc-disbursement-event.d.ts
163
141
  /**
164
142
  * An event related to an Adhoc Disbursement.
165
143
  */
166
144
  interface AdhocDisbursementEvent {
167
- /**
168
- * The type of transaction. For example, \"Disbursed to Amazon Gift Card balance\".
169
- */
170
- 'TransactionType'?: string;
171
- /**
172
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
173
- */
174
- 'PostedDate'?: string;
175
- /**
176
- * The identifier for the transaction.
177
- */
178
- 'TransactionId'?: string;
179
- 'TransactionAmount'?: Currency;
145
+ /**
146
+ * The type of transaction. For example, \"Disbursed to Amazon Gift Card balance\".
147
+ */
148
+ 'TransactionType'?: string;
149
+ /**
150
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
151
+ */
152
+ 'PostedDate'?: string;
153
+ /**
154
+ * The identifier for the transaction.
155
+ */
156
+ 'TransactionId'?: string;
157
+ 'TransactionAmount'?: Currency;
180
158
  }
181
-
182
- /**
183
- * Selling Partner API for Finances
184
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
185
- *
186
- * The version of the OpenAPI document: v0
187
- *
188
- *
189
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
190
- * https://openapi-generator.tech
191
- * Do not edit the class manually.
192
- */
193
-
159
+ //#endregion
160
+ //#region src/api-model/models/adjustment-item.d.ts
194
161
  /**
195
162
  * An item in an adjustment to the seller\'s account.
196
163
  */
197
164
  interface AdjustmentItem {
198
- /**
199
- * Represents the number of units in the seller\'s inventory when the `AdjustmentType` is `FBAInventoryReimbursement`.
200
- */
201
- 'Quantity'?: string;
202
- 'PerUnitAmount'?: Currency;
203
- 'TotalAmount'?: Currency;
204
- /**
205
- * The seller SKU of the item. The seller SKU is qualified by the seller\'s seller ID, which is included with every call to the Selling Partner API.
206
- */
207
- 'SellerSKU'?: string;
208
- /**
209
- * A unique identifier assigned to products stored in and fulfilled from a fulfillment center.
210
- */
211
- 'FnSKU'?: string;
212
- /**
213
- * A short description of the item.
214
- */
215
- 'ProductDescription'?: string;
216
- /**
217
- * The Amazon Standard Identification Number (ASIN) of the item.
218
- */
219
- 'ASIN'?: string;
220
- /**
221
- * The transaction number that is related to the adjustment.
222
- */
223
- 'TransactionNumber'?: string;
165
+ /**
166
+ * Represents the number of units in the seller\'s inventory when the `AdjustmentType` is `FBAInventoryReimbursement`.
167
+ */
168
+ 'Quantity'?: string;
169
+ 'PerUnitAmount'?: Currency;
170
+ 'TotalAmount'?: Currency;
171
+ /**
172
+ * The seller SKU of the item. The seller SKU is qualified by the seller\'s seller ID, which is included with every call to the Selling Partner API.
173
+ */
174
+ 'SellerSKU'?: string;
175
+ /**
176
+ * A unique identifier assigned to products stored in and fulfilled from a fulfillment center.
177
+ */
178
+ 'FnSKU'?: string;
179
+ /**
180
+ * A short description of the item.
181
+ */
182
+ 'ProductDescription'?: string;
183
+ /**
184
+ * The Amazon Standard Identification Number (ASIN) of the item.
185
+ */
186
+ 'ASIN'?: string;
187
+ /**
188
+ * The transaction number that is related to the adjustment.
189
+ */
190
+ 'TransactionNumber'?: string;
224
191
  }
225
-
226
- /**
227
- * Selling Partner API for Finances
228
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
229
- *
230
- * The version of the OpenAPI document: v0
231
- *
232
- *
233
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
234
- * https://openapi-generator.tech
235
- * Do not edit the class manually.
236
- */
237
-
192
+ //#endregion
193
+ //#region src/api-model/models/adjustment-event.d.ts
238
194
  /**
239
195
  * An adjustment to the seller\'s account.
240
196
  */
241
197
  interface AdjustmentEvent {
242
- /**
243
- * The type of adjustment. Possible values: * `FBAInventoryReimbursement`: An FBA inventory reimbursement to a seller\'s account. This occurs if a seller\'s inventory is damaged. * `ReserveEvent`: A reserve event that is generated at the time a settlement period closes. This occurs when some money from a seller\'s account is held back. * `PostageBilling`: The amount paid by a seller for shipping labels. * `PostageRefund`: The reimbursement of shipping labels purchased for orders that were canceled or refunded. * `LostOrDamagedReimbursement`: An Amazon Easy Ship reimbursement to a seller\'s account for a package that we lost or damaged. * `CanceledButPickedUpReimbursement`: An Amazon Easy Ship reimbursement to a seller\'s account. This occurs when a package is picked up and the order is subsequently canceled. This value is used only in the India marketplace. * `ReimbursementClawback`: An Amazon Easy Ship reimbursement clawback from a seller\'s account. This occurs when a prior reimbursement is reversed. This value is used only in the India marketplace. * `SellerRewards`: An award credited to a seller\'s account for their participation in an offer in the Seller Rewards program. Applies only to the India marketplace.
244
- */
245
- 'AdjustmentType'?: string;
246
- /**
247
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
248
- */
249
- 'PostedDate'?: string;
250
- /**
251
- * The name of the store where the event occurred.
252
- */
253
- 'StoreName'?: string;
254
- 'AdjustmentAmount'?: Currency;
255
- /**
256
- * A list of information about items in an adjustment to the seller\'s account.
257
- */
258
- 'AdjustmentItemList'?: Array<AdjustmentItem>;
198
+ /**
199
+ * The type of adjustment. Possible values: * `FBAInventoryReimbursement`: An FBA inventory reimbursement to a seller\'s account. This occurs if a seller\'s inventory is damaged. * `ReserveEvent`: A reserve event that is generated at the time a settlement period closes. This occurs when some money from a seller\'s account is held back. * `PostageBilling`: The amount paid by a seller for shipping labels. * `PostageRefund`: The reimbursement of shipping labels purchased for orders that were canceled or refunded. * `LostOrDamagedReimbursement`: An Amazon Easy Ship reimbursement to a seller\'s account for a package that we lost or damaged. * `CanceledButPickedUpReimbursement`: An Amazon Easy Ship reimbursement to a seller\'s account. This occurs when a package is picked up and the order is subsequently canceled. This value is used only in the India marketplace. * `ReimbursementClawback`: An Amazon Easy Ship reimbursement clawback from a seller\'s account. This occurs when a prior reimbursement is reversed. This value is used only in the India marketplace. * `SellerRewards`: An award credited to a seller\'s account for their participation in an offer in the Seller Rewards program. Applies only to the India marketplace.
200
+ */
201
+ 'AdjustmentType'?: string;
202
+ /**
203
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
204
+ */
205
+ 'PostedDate'?: string;
206
+ /**
207
+ * The name of the store where the event occurred.
208
+ */
209
+ 'StoreName'?: string;
210
+ 'AdjustmentAmount'?: Currency;
211
+ /**
212
+ * A list of information about items in an adjustment to the seller\'s account.
213
+ */
214
+ 'AdjustmentItemList'?: Array<AdjustmentItem>;
259
215
  }
260
-
261
- /**
262
- * Selling Partner API for Finances
263
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
264
- *
265
- * The version of the OpenAPI document: v0
266
- *
267
- *
268
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
269
- * https://openapi-generator.tech
270
- * Do not edit the class manually.
271
- */
272
-
216
+ //#endregion
217
+ //#region src/api-model/models/affordability-expense-event.d.ts
273
218
  /**
274
219
  * An expense related to an affordability promotion.
275
220
  */
276
221
  interface AffordabilityExpenseEvent {
277
- /**
278
- * An Amazon-defined identifier for an order.
279
- */
280
- 'AmazonOrderId'?: string;
281
- /**
282
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
283
- */
284
- 'PostedDate'?: string;
285
- /**
286
- * The Amazon-defined marketplace identifier.
287
- */
288
- 'MarketplaceId'?: string;
289
- /**
290
- * The type of transaction. Possible values: * `Charge`: an affordability promotion expense. * `Refund`: an affordability promotion expense reversal.
291
- */
292
- 'TransactionType'?: string;
293
- 'BaseExpense'?: Currency;
294
- 'TaxTypeCGST': Currency;
295
- 'TaxTypeSGST': Currency;
296
- 'TaxTypeIGST': Currency;
297
- 'TotalExpense'?: Currency;
222
+ /**
223
+ * An Amazon-defined identifier for an order.
224
+ */
225
+ 'AmazonOrderId'?: string;
226
+ /**
227
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
228
+ */
229
+ 'PostedDate'?: string;
230
+ /**
231
+ * The Amazon-defined marketplace identifier.
232
+ */
233
+ 'MarketplaceId'?: string;
234
+ /**
235
+ * The type of transaction. Possible values: * `Charge`: an affordability promotion expense. * `Refund`: an affordability promotion expense reversal.
236
+ */
237
+ 'TransactionType'?: string;
238
+ 'BaseExpense'?: Currency;
239
+ 'TaxTypeCGST': Currency;
240
+ 'TaxTypeSGST': Currency;
241
+ 'TaxTypeIGST': Currency;
242
+ 'TotalExpense'?: Currency;
298
243
  }
299
-
300
- /**
301
- * Selling Partner API for Finances
302
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
303
- *
304
- * The version of the OpenAPI document: v0
305
- *
306
- *
307
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
308
- * https://openapi-generator.tech
309
- * Do not edit the class manually.
310
- */
311
-
244
+ //#endregion
245
+ //#region src/api-model/models/capacity-reservation-billing-event.d.ts
312
246
  /**
313
247
  * An event related to a capacity reservation billing charge.
314
248
  */
315
249
  interface CapacityReservationBillingEvent {
316
- /**
317
- * The transaction type. For example, FBA Inventory Fee.
318
- */
319
- 'TransactionType'?: string;
320
- /**
321
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
322
- */
323
- 'PostedDate'?: string;
324
- /**
325
- * A short description of the capacity reservation billing event.
326
- */
327
- 'Description'?: string;
328
- 'TransactionAmount'?: Currency;
250
+ /**
251
+ * The transaction type. For example, FBA Inventory Fee.
252
+ */
253
+ 'TransactionType'?: string;
254
+ /**
255
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
256
+ */
257
+ 'PostedDate'?: string;
258
+ /**
259
+ * A short description of the capacity reservation billing event.
260
+ */
261
+ 'Description'?: string;
262
+ 'TransactionAmount'?: Currency;
329
263
  }
330
-
331
- /**
332
- * Selling Partner API for Finances
333
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
334
- *
335
- * The version of the OpenAPI document: v0
336
- *
337
- *
338
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
339
- * https://openapi-generator.tech
340
- * Do not edit the class manually.
341
- */
342
-
264
+ //#endregion
265
+ //#region src/api-model/models/charge-component.d.ts
343
266
  /**
344
267
  * A charge on the seller\'s account. Possible values: * `Principal`: The selling price of the order item, which is equal to the selling price of the item multiplied by the quantity ordered. * `Tax`: The tax on the principal that is collected by the seller. * `MarketplaceFacilitatorTax-Principal`: The tax that is withheld on the principal. * `MarketplaceFacilitatorTax-Shipping`: The tax that is withheld on the `ShippingCharge`. * `MarketplaceFacilitatorTax-Giftwrap`: The tax that is withheld on the Giftwrap charge. * `MarketplaceFacilitatorTax-Other`: The tax that is withheld on other miscellaneous charges. * `Discount`: The promotional discount for an order item. * `TaxDiscount`: The tax that is deducted for promotional rebates. * `CODItemCharge`: The COD charge for an order item. * `CODItemTaxCharge`: The tax that is collected by the seller on a `CODItemCharge`. * `CODOrderCharge`: The COD charge for an order. * `CODOrderTaxCharge`: The tax that is collected by the seller on a `CODOrderCharge`. * `CODShippingCharge`: Shipping charges for a COD order. * `CODShippingTaxCharge`: The tax that is collected by the seller on a `CODShippingCharge`. * `ShippingCharge`: The shipping charge. * `ShippingTax`: The tax that is collected by the seller on a `ShippingCharge`. * `Goodwill`: The amount of money that is given to a buyer as a gesture of goodwill or to compensate for pain and suffering in the buying experience. * `Giftwrap`: The gift wrap charge. * `GiftwrapTax`: The tax that is collected by the seller on a gift wrap charge. * `RestockingFee`: The charge that is applied to the buyer when returning a product in certain categories. * `ReturnShipping`: The amount of money that is given to the buyer to compensate for shipping the item back if we are at fault. * `PointsFee`: The value of Amazon Points deducted from the refund if the buyer does not have enough Amazon Points to cover the deduction. * `GenericDeduction`: A generic bad debt deduction. * `FreeReplacementReturnShipping`: The compensation for return shipping when a buyer receives the wrong item, requests a free replacement, and returns the incorrect item. * `PaymentMethodFee`: The fee that is collected for certain payment methods in certain marketplaces. * `ExportCharge`: The export duty that is charged when an item is shipped to an international destination as part of the Amazon Global program. * `SAFE-TReimbursement`: The SAFE-T claim amount for the item. * `TCS-CGST`: Tax Collected at Source (TCS) for Central Goods and Services Tax (CGST). * `TCS-SGST`: Tax Collected at Source for State Goods and Services Tax (SGST). * `TCS-IGST`: Tax Collected at Source for Integrated Goods and Services Tax (IGST). * `TCS-UTGST`: Tax Collected at Source for Union Territories Goods and Services Tax (UTGST). * `PaidthroughEBT`: The amount of money paid with EBT for any order or shipment items.
345
268
  */
346
269
  interface ChargeComponent {
347
- /**
348
- * The type of charge.
349
- */
350
- 'ChargeType'?: string;
351
- 'ChargeAmount'?: Currency;
270
+ /**
271
+ * The type of charge.
272
+ */
273
+ 'ChargeType'?: string;
274
+ 'ChargeAmount'?: Currency;
352
275
  }
353
-
354
- /**
355
- * Selling Partner API for Finances
356
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
357
- *
358
- * The version of the OpenAPI document: v0
359
- *
360
- *
361
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
362
- * https://openapi-generator.tech
363
- * Do not edit the class manually.
364
- */
365
-
276
+ //#endregion
277
+ //#region src/api-model/models/charge-instrument.d.ts
366
278
  /**
367
279
  * A payment instrument.
368
280
  */
369
281
  interface ChargeInstrument {
370
- /**
371
- * A short description of the charge instrument.
372
- */
373
- 'Description'?: string;
374
- /**
375
- * The account tail (trailing digits) of the charge instrument.
376
- */
377
- 'Tail'?: string;
378
- 'Amount'?: Currency;
282
+ /**
283
+ * A short description of the charge instrument.
284
+ */
285
+ 'Description'?: string;
286
+ /**
287
+ * The account tail (trailing digits) of the charge instrument.
288
+ */
289
+ 'Tail'?: string;
290
+ 'Amount'?: Currency;
379
291
  }
380
-
381
- /**
382
- * Selling Partner API for Finances
383
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
384
- *
385
- * The version of the OpenAPI document: v0
386
- *
387
- *
388
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
389
- * https://openapi-generator.tech
390
- * Do not edit the class manually.
391
- */
392
-
292
+ //#endregion
293
+ //#region src/api-model/models/charge-refund-transaction.d.ts
393
294
  /**
394
295
  * The charge refund transaction.
395
296
  */
396
297
  interface ChargeRefundTransaction {
397
- 'ChargeAmount'?: Currency;
398
- /**
399
- * The type of charge.
400
- */
401
- 'ChargeType'?: string;
298
+ 'ChargeAmount'?: Currency;
299
+ /**
300
+ * The type of charge.
301
+ */
302
+ 'ChargeType'?: string;
402
303
  }
403
-
404
- /**
405
- * Selling Partner API for Finances
406
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
407
- *
408
- * The version of the OpenAPI document: v0
409
- *
410
- *
411
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
412
- * https://openapi-generator.tech
413
- * Do not edit the class manually.
414
- */
415
-
304
+ //#endregion
305
+ //#region src/api-model/models/charge-refund-event.d.ts
416
306
  /**
417
307
  * An event related to charge refund.
418
308
  */
419
309
  interface ChargeRefundEvent {
420
- /**
421
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
422
- */
423
- 'PostedDate'?: string;
424
- /**
425
- * The reason given for a charge refund. For example, `SubscriptionFeeCorrection`.
426
- */
427
- 'ReasonCode'?: string;
428
- /**
429
- * A description of the Reason Code. For example, `SubscriptionFeeCorrection`.
430
- */
431
- 'ReasonCodeDescription'?: string;
432
- /**
433
- * A list of `ChargeRefund` transactions
434
- */
435
- 'ChargeRefundTransactions'?: Array<ChargeRefundTransaction>;
310
+ /**
311
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
312
+ */
313
+ 'PostedDate'?: string;
314
+ /**
315
+ * The reason given for a charge refund. For example, `SubscriptionFeeCorrection`.
316
+ */
317
+ 'ReasonCode'?: string;
318
+ /**
319
+ * A description of the Reason Code. For example, `SubscriptionFeeCorrection`.
320
+ */
321
+ 'ReasonCodeDescription'?: string;
322
+ /**
323
+ * A list of `ChargeRefund` transactions
324
+ */
325
+ 'ChargeRefundTransactions'?: Array<ChargeRefundTransaction>;
436
326
  }
437
-
438
- /**
439
- * Selling Partner API for Finances
440
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
441
- *
442
- * The version of the OpenAPI document: v0
443
- *
444
- *
445
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
446
- * https://openapi-generator.tech
447
- * Do not edit the class manually.
448
- */
449
-
327
+ //#endregion
328
+ //#region src/api-model/models/fee-component.d.ts
450
329
  /**
451
330
  * A fee associated with the event.
452
331
  */
453
332
  interface FeeComponent {
454
- /**
455
- * The type of fee. For more information about Selling on Amazon fees, see [Selling on Amazon Fee Schedule](https://sellercentral.amazon.com/gp/help/200336920) on Seller Central. For more information about Fulfillment by Amazon fees, see [FBA features, services and fees](https://sellercentral.amazon.com/gp/help/201074400) on Seller Central.
456
- */
457
- 'FeeType'?: string;
458
- 'FeeAmount'?: Currency;
333
+ /**
334
+ * The type of fee. For more information about Selling on Amazon fees, see [Selling on Amazon Fee Schedule](https://sellercentral.amazon.com/gp/help/200336920) on Seller Central. For more information about Fulfillment by Amazon fees, see [FBA features, services and fees](https://sellercentral.amazon.com/gp/help/201074400) on Seller Central.
335
+ */
336
+ 'FeeType'?: string;
337
+ 'FeeAmount'?: Currency;
459
338
  }
460
-
461
- /**
462
- * Selling Partner API for Finances
463
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
464
- *
465
- * The version of the OpenAPI document: v0
466
- *
467
- *
468
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
469
- * https://openapi-generator.tech
470
- * Do not edit the class manually.
471
- */
472
-
339
+ //#endregion
340
+ //#region src/api-model/models/coupon-payment-event.d.ts
473
341
  /**
474
342
  * An event related to coupon payments.
475
343
  */
476
344
  interface CouponPaymentEvent {
477
- /**
478
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
479
- */
480
- 'PostedDate'?: string;
481
- /**
482
- * A coupon identifier.
483
- */
484
- 'CouponId'?: string;
485
- /**
486
- * The description provided by the seller when they created the coupon.
487
- */
488
- 'SellerCouponDescription'?: string;
489
- /**
490
- * The number of coupon clips or redemptions.
491
- */
492
- 'ClipOrRedemptionCount'?: number;
493
- /**
494
- * A payment event identifier.
495
- */
496
- 'PaymentEventId'?: string;
497
- 'FeeComponent'?: FeeComponent;
498
- 'ChargeComponent'?: ChargeComponent;
499
- 'TotalAmount'?: Currency;
345
+ /**
346
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
347
+ */
348
+ 'PostedDate'?: string;
349
+ /**
350
+ * A coupon identifier.
351
+ */
352
+ 'CouponId'?: string;
353
+ /**
354
+ * The description provided by the seller when they created the coupon.
355
+ */
356
+ 'SellerCouponDescription'?: string;
357
+ /**
358
+ * The number of coupon clips or redemptions.
359
+ */
360
+ 'ClipOrRedemptionCount'?: number;
361
+ /**
362
+ * A payment event identifier.
363
+ */
364
+ 'PaymentEventId'?: string;
365
+ 'FeeComponent'?: FeeComponent;
366
+ 'ChargeComponent'?: ChargeComponent;
367
+ 'TotalAmount'?: Currency;
500
368
  }
501
-
502
- /**
503
- * Selling Partner API for Finances
504
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
505
- *
506
- * The version of the OpenAPI document: v0
507
- *
508
- *
509
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
510
- * https://openapi-generator.tech
511
- * Do not edit the class manually.
512
- */
513
-
369
+ //#endregion
370
+ //#region src/api-model/models/debt-recovery-item.d.ts
514
371
  /**
515
372
  * An item of a debt payment or debt adjustment.
516
373
  */
517
374
  interface DebtRecoveryItem {
518
- 'RecoveryAmount'?: Currency;
519
- 'OriginalAmount'?: Currency;
520
- /**
521
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
522
- */
523
- 'GroupBeginDate'?: string;
524
- /**
525
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
526
- */
527
- 'GroupEndDate'?: string;
375
+ 'RecoveryAmount'?: Currency;
376
+ 'OriginalAmount'?: Currency;
377
+ /**
378
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
379
+ */
380
+ 'GroupBeginDate'?: string;
381
+ /**
382
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
383
+ */
384
+ 'GroupEndDate'?: string;
528
385
  }
529
-
530
- /**
531
- * Selling Partner API for Finances
532
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
533
- *
534
- * The version of the OpenAPI document: v0
535
- *
536
- *
537
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
538
- * https://openapi-generator.tech
539
- * Do not edit the class manually.
540
- */
541
-
386
+ //#endregion
387
+ //#region src/api-model/models/debt-recovery-event.d.ts
542
388
  /**
543
389
  * A debt payment or debt adjustment.
544
390
  */
545
391
  interface DebtRecoveryEvent {
546
- /**
547
- * The debt recovery type. Possible values: * `DebtPayment` * `DebtPaymentFailure` * `DebtAdjustment`
548
- */
549
- 'DebtRecoveryType'?: string;
550
- 'RecoveryAmount'?: Currency;
551
- 'OverPaymentCredit'?: Currency;
552
- /**
553
- * A list of debt recovery item information.
554
- */
555
- 'DebtRecoveryItemList'?: Array<DebtRecoveryItem>;
556
- /**
557
- * A list of payment instruments.
558
- */
559
- 'ChargeInstrumentList'?: Array<ChargeInstrument>;
392
+ /**
393
+ * The debt recovery type. Possible values: * `DebtPayment` * `DebtPaymentFailure` * `DebtAdjustment`
394
+ */
395
+ 'DebtRecoveryType'?: string;
396
+ 'RecoveryAmount'?: Currency;
397
+ 'OverPaymentCredit'?: Currency;
398
+ /**
399
+ * A list of debt recovery item information.
400
+ */
401
+ 'DebtRecoveryItemList'?: Array<DebtRecoveryItem>;
402
+ /**
403
+ * A list of payment instruments.
404
+ */
405
+ 'ChargeInstrumentList'?: Array<ChargeInstrument>;
560
406
  }
561
-
562
- /**
563
- * Selling Partner API for Finances
564
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
565
- *
566
- * The version of the OpenAPI document: v0
567
- *
568
- *
569
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
570
- * https://openapi-generator.tech
571
- * Do not edit the class manually.
572
- */
573
-
407
+ //#endregion
408
+ //#region src/api-model/models/direct-payment.d.ts
574
409
  /**
575
410
  * A payment made directly to a seller.
576
411
  */
577
412
  interface DirectPayment {
578
- /**
579
- * The type of payment. Possible values: * `StoredValueCardRevenue` - The amount that is deducted from the seller\'s account because the seller received money through a stored value card. * `StoredValueCardRefund` - The amount that Amazon returns to the seller if the order that is purchased using a stored value card is refunded. * `PrivateLabelCreditCardRevenue` - The amount that is deducted from the seller\'s account because the seller received money through a private label credit card offered by Amazon. * `PrivateLabelCreditCardRefund` - The amount that Amazon returns to the seller if the order that is purchased using a private label credit card offered by Amazon is refunded. * `CollectOnDeliveryRevenue` - The COD amount that the seller collected directly from the buyer. * `CollectOnDeliveryRefund` - The amount that Amazon refunds to the buyer if an order paid for by COD is refunded.
580
- */
581
- 'DirectPaymentType'?: string;
582
- 'DirectPaymentAmount'?: Currency;
413
+ /**
414
+ * The type of payment. Possible values: * `StoredValueCardRevenue` - The amount that is deducted from the seller\'s account because the seller received money through a stored value card. * `StoredValueCardRefund` - The amount that Amazon returns to the seller if the order that is purchased using a stored value card is refunded. * `PrivateLabelCreditCardRevenue` - The amount that is deducted from the seller\'s account because the seller received money through a private label credit card offered by Amazon. * `PrivateLabelCreditCardRefund` - The amount that Amazon returns to the seller if the order that is purchased using a private label credit card offered by Amazon is refunded. * `CollectOnDeliveryRevenue` - The COD amount that the seller collected directly from the buyer. * `CollectOnDeliveryRefund` - The amount that Amazon refunds to the buyer if an order paid for by COD is refunded.
415
+ */
416
+ 'DirectPaymentType'?: string;
417
+ 'DirectPaymentAmount'?: Currency;
583
418
  }
584
-
585
- /**
586
- * Selling Partner API for Finances
587
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
588
- *
589
- * The version of the OpenAPI document: v0
590
- *
591
- *
592
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
593
- * https://openapi-generator.tech
594
- * Do not edit the class manually.
595
- */
596
-
419
+ //#endregion
420
+ //#region src/api-model/models/ebtrefund-reimbursement-only-event.d.ts
597
421
  /**
598
422
  * An EBT refund reimbursement event.
599
423
  */
600
424
  interface EBTRefundReimbursementOnlyEvent {
601
- /**
602
- * The identifier of an order.
603
- */
604
- 'OrderId'?: string;
605
- /**
606
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
607
- */
608
- 'PostedDate'?: string;
609
- 'Amount'?: Currency;
425
+ /**
426
+ * The identifier of an order.
427
+ */
428
+ 'OrderId'?: string;
429
+ /**
430
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
431
+ */
432
+ 'PostedDate'?: string;
433
+ 'Amount'?: Currency;
610
434
  }
611
-
612
- /**
613
- * Selling Partner API for Finances
614
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
615
- *
616
- * The version of the OpenAPI document: v0
617
- *
618
- *
619
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
620
- * https://openapi-generator.tech
621
- * Do not edit the class manually.
622
- */
623
-
435
+ //#endregion
436
+ //#region src/api-model/models/fbaliquidation-event.d.ts
624
437
  /**
625
438
  * A payment event for Fulfillment by Amazon (FBA) inventory liquidation. This event is used only in the US marketplace.
626
439
  */
627
440
  interface FBALiquidationEvent {
628
- /**
629
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
630
- */
631
- 'PostedDate'?: string;
632
- /**
633
- * The identifier for the original removal order.
634
- */
635
- 'OriginalRemovalOrderId'?: string;
636
- 'LiquidationProceedsAmount'?: Currency;
637
- 'LiquidationFeeAmount'?: Currency;
441
+ /**
442
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
443
+ */
444
+ 'PostedDate'?: string;
445
+ /**
446
+ * The identifier for the original removal order.
447
+ */
448
+ 'OriginalRemovalOrderId'?: string;
449
+ 'LiquidationProceedsAmount'?: Currency;
450
+ 'LiquidationFeeAmount'?: Currency;
638
451
  }
639
-
640
- /**
641
- * Selling Partner API for Finances
642
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
643
- *
644
- * The version of the OpenAPI document: v0
645
- *
646
- *
647
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
648
- * https://openapi-generator.tech
649
- * Do not edit the class manually.
650
- */
651
-
452
+ //#endregion
453
+ //#region src/api-model/models/failed-adhoc-disbursement-event.d.ts
652
454
  /**
653
455
  * Failed ad hoc disbursement event list.
654
456
  */
655
457
  interface FailedAdhocDisbursementEvent {
656
- /**
657
- * The type of fund transfer. For example, `Refund`.
658
- */
659
- 'FundsTransfersType'?: string;
660
- /**
661
- * The transfer identifier.
662
- */
663
- 'TransferId'?: string;
664
- /**
665
- * The disbursement identifier.
666
- */
667
- 'DisbursementId'?: string;
668
- /**
669
- * The type of payment for disbursement. For example, `CREDIT_CARD`.
670
- */
671
- 'PaymentDisbursementType'?: string;
672
- /**
673
- * The status of the failed `AdhocDisbursement`. For example, `HARD_DECLINED`.
674
- */
675
- 'Status'?: string;
676
- 'TransferAmount'?: Currency;
677
- /**
678
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
679
- */
680
- 'PostedDate'?: string;
458
+ /**
459
+ * The type of fund transfer. For example, `Refund`.
460
+ */
461
+ 'FundsTransfersType'?: string;
462
+ /**
463
+ * The transfer identifier.
464
+ */
465
+ 'TransferId'?: string;
466
+ /**
467
+ * The disbursement identifier.
468
+ */
469
+ 'DisbursementId'?: string;
470
+ /**
471
+ * The type of payment for disbursement. For example, `CREDIT_CARD`.
472
+ */
473
+ 'PaymentDisbursementType'?: string;
474
+ /**
475
+ * The status of the failed `AdhocDisbursement`. For example, `HARD_DECLINED`.
476
+ */
477
+ 'Status'?: string;
478
+ 'TransferAmount'?: Currency;
479
+ /**
480
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
481
+ */
482
+ 'PostedDate'?: string;
681
483
  }
682
-
683
- /**
684
- * Selling Partner API for Finances
685
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
686
- *
687
- * The version of the OpenAPI document: v0
688
- *
689
- *
690
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
691
- * https://openapi-generator.tech
692
- * Do not edit the class manually.
693
- */
694
-
484
+ //#endregion
485
+ //#region src/api-model/models/financial-event-group.d.ts
695
486
  /**
696
487
  * Information related to a financial event group.
697
488
  */
698
489
  interface FinancialEventGroup {
699
- /**
700
- * A unique identifier for the financial event group.
701
- */
702
- 'FinancialEventGroupId'?: string;
703
- /**
704
- * The processing status of the financial event group indicates whether the balance of the financial event group is settled. Possible values: * `Open` * `Closed`
705
- */
706
- 'ProcessingStatus'?: string;
707
- /**
708
- * The status of the fund transfer.
709
- */
710
- 'FundTransferStatus'?: string;
711
- 'OriginalTotal'?: Currency;
712
- 'ConvertedTotal'?: Currency;
713
- /**
714
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
715
- */
716
- 'FundTransferDate'?: string;
717
- /**
718
- * The trace identifier used by sellers to look up transactions externally.
719
- */
720
- 'TraceId'?: string;
721
- /**
722
- * The account tail of the payment instrument.
723
- */
724
- 'AccountTail'?: string;
725
- 'BeginningBalance'?: Currency;
726
- /**
727
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
728
- */
729
- 'FinancialEventGroupStart'?: string;
730
- /**
731
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
732
- */
733
- 'FinancialEventGroupEnd'?: string;
490
+ /**
491
+ * A unique identifier for the financial event group.
492
+ */
493
+ 'FinancialEventGroupId'?: string;
494
+ /**
495
+ * The processing status of the financial event group indicates whether the balance of the financial event group is settled. Possible values: * `Open` * `Closed`
496
+ */
497
+ 'ProcessingStatus'?: string;
498
+ /**
499
+ * The status of the fund transfer.
500
+ */
501
+ 'FundTransferStatus'?: string;
502
+ 'OriginalTotal'?: Currency;
503
+ 'ConvertedTotal'?: Currency;
504
+ /**
505
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
506
+ */
507
+ 'FundTransferDate'?: string;
508
+ /**
509
+ * The trace identifier used by sellers to look up transactions externally.
510
+ */
511
+ 'TraceId'?: string;
512
+ /**
513
+ * The account tail of the payment instrument.
514
+ */
515
+ 'AccountTail'?: string;
516
+ 'BeginningBalance'?: Currency;
517
+ /**
518
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
519
+ */
520
+ 'FinancialEventGroupStart'?: string;
521
+ /**
522
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
523
+ */
524
+ 'FinancialEventGroupEnd'?: string;
734
525
  }
735
-
736
- /**
737
- * Selling Partner API for Finances
738
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
739
- *
740
- * The version of the OpenAPI document: v0
741
- *
742
- *
743
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
744
- * https://openapi-generator.tech
745
- * Do not edit the class manually.
746
- */
747
-
526
+ //#endregion
527
+ //#region src/api-model/models/imaging-services-fee-event.d.ts
748
528
  /**
749
529
  * A fee event related to Amazon Imaging services.
750
530
  */
751
531
  interface ImagingServicesFeeEvent {
752
- /**
753
- * The identifier for the imaging services request.
754
- */
755
- 'ImagingRequestBillingItemID'?: string;
756
- /**
757
- * The Amazon Standard Identification Number (ASIN) of the item for which the imaging service was requested.
758
- */
759
- 'ASIN'?: string;
760
- /**
761
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
762
- */
763
- 'PostedDate'?: string;
764
- /**
765
- * A list of fee component information.
766
- */
767
- 'FeeList'?: Array<FeeComponent>;
532
+ /**
533
+ * The identifier for the imaging services request.
534
+ */
535
+ 'ImagingRequestBillingItemID'?: string;
536
+ /**
537
+ * The Amazon Standard Identification Number (ASIN) of the item for which the imaging service was requested.
538
+ */
539
+ 'ASIN'?: string;
540
+ /**
541
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
542
+ */
543
+ 'PostedDate'?: string;
544
+ /**
545
+ * A list of fee component information.
546
+ */
547
+ 'FeeList'?: Array<FeeComponent>;
768
548
  }
769
-
770
- /**
771
- * Selling Partner API for Finances
772
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
773
- *
774
- * The version of the OpenAPI document: v0
775
- *
776
- *
777
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
778
- * https://openapi-generator.tech
779
- * Do not edit the class manually.
780
- */
781
-
549
+ //#endregion
550
+ //#region src/api-model/models/loan-servicing-event.d.ts
782
551
  /**
783
552
  * A loan advance, loan payment, or loan refund.
784
553
  */
785
554
  interface LoanServicingEvent {
786
- 'LoanAmount'?: Currency;
787
- /**
788
- * The type of event. Possible values: * `LoanAdvance` * `LoanPayment` * `LoanRefund`
789
- */
790
- 'SourceBusinessEventType'?: string;
555
+ 'LoanAmount'?: Currency;
556
+ /**
557
+ * The type of event. Possible values: * `LoanAdvance` * `LoanPayment` * `LoanRefund`
558
+ */
559
+ 'SourceBusinessEventType'?: string;
791
560
  }
792
-
793
- /**
794
- * Selling Partner API for Finances
795
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
796
- *
797
- * The version of the OpenAPI document: v0
798
- *
799
- *
800
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
801
- * https://openapi-generator.tech
802
- * Do not edit the class manually.
803
- */
804
-
561
+ //#endregion
562
+ //#region src/api-model/models/network-commingling-transaction-event.d.ts
805
563
  /**
806
564
  * A network commingling transaction event.
807
565
  */
808
566
  interface NetworkComminglingTransactionEvent {
809
- /**
810
- * The type of network item swap. Possible values: * `NetCo`: A Fulfillment by Amazon inventory pooling transaction. Available only in the India marketplace. * `ComminglingVAT`: A commingling VAT transaction. Available only in the Spain, UK, France, Germany, and Italy marketplaces.
811
- */
812
- 'TransactionType'?: string;
813
- /**
814
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
815
- */
816
- 'PostedDate'?: string;
817
- /**
818
- * The identifier for the network item swap.
819
- */
820
- 'NetCoTransactionID'?: string;
821
- /**
822
- * The reason for the network item swap.
823
- */
824
- 'SwapReason'?: string;
825
- /**
826
- * The Amazon Standard Identification Number (ASIN) of the swapped item.
827
- */
828
- 'ASIN'?: string;
829
- /**
830
- * The marketplace in which the event took place.
831
- */
832
- 'MarketplaceId'?: string;
833
- 'TaxExclusiveAmount'?: Currency;
834
- 'TaxAmount'?: Currency;
567
+ /**
568
+ * The type of network item swap. Possible values: * `NetCo`: A Fulfillment by Amazon inventory pooling transaction. Available only in the India marketplace. * `ComminglingVAT`: A commingling VAT transaction. Available only in the Spain, UK, France, Germany, and Italy marketplaces.
569
+ */
570
+ 'TransactionType'?: string;
571
+ /**
572
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
573
+ */
574
+ 'PostedDate'?: string;
575
+ /**
576
+ * The identifier for the network item swap.
577
+ */
578
+ 'NetCoTransactionID'?: string;
579
+ /**
580
+ * The reason for the network item swap.
581
+ */
582
+ 'SwapReason'?: string;
583
+ /**
584
+ * The Amazon Standard Identification Number (ASIN) of the swapped item.
585
+ */
586
+ 'ASIN'?: string;
587
+ /**
588
+ * The marketplace in which the event took place.
589
+ */
590
+ 'MarketplaceId'?: string;
591
+ 'TaxExclusiveAmount'?: Currency;
592
+ 'TaxAmount'?: Currency;
835
593
  }
836
-
837
- /**
838
- * Selling Partner API for Finances
839
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
840
- *
841
- * The version of the OpenAPI document: v0
842
- *
843
- *
844
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
845
- * https://openapi-generator.tech
846
- * Do not edit the class manually.
847
- */
848
-
594
+ //#endregion
595
+ //#region src/api-model/models/pay-with-amazon-event.d.ts
849
596
  /**
850
597
  * An event related to the seller\'s Pay with Amazon account.
851
598
  */
852
599
  interface PayWithAmazonEvent {
853
- /**
854
- * An order identifier that is specified by the seller.
855
- */
856
- 'SellerOrderId'?: string;
857
- /**
858
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
859
- */
860
- 'TransactionPostedDate'?: string;
861
- /**
862
- * The type of business object.
863
- */
864
- 'BusinessObjectType'?: string;
865
- /**
866
- * The sales channel for the transaction.
867
- */
868
- 'SalesChannel'?: string;
869
- 'Charge'?: ChargeComponent;
870
- /**
871
- * A list of fee component information.
872
- */
873
- 'FeeList'?: Array<FeeComponent>;
874
- /**
875
- * The type of payment. Possible values: * `Sales`
876
- */
877
- 'PaymentAmountType'?: string;
878
- /**
879
- * A short description of this payment event.
880
- */
881
- 'AmountDescription'?: string;
882
- /**
883
- * The fulfillment channel. Possible values: * `AFN`: Amazon Fulfillment Network (Fulfillment by Amazon) * `MFN`: Merchant Fulfillment Network (self-fulfilled)
884
- */
885
- 'FulfillmentChannel'?: string;
886
- /**
887
- * The name of the store where the event occurred.
888
- */
889
- 'StoreName'?: string;
600
+ /**
601
+ * An order identifier that is specified by the seller.
602
+ */
603
+ 'SellerOrderId'?: string;
604
+ /**
605
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
606
+ */
607
+ 'TransactionPostedDate'?: string;
608
+ /**
609
+ * The type of business object.
610
+ */
611
+ 'BusinessObjectType'?: string;
612
+ /**
613
+ * The sales channel for the transaction.
614
+ */
615
+ 'SalesChannel'?: string;
616
+ 'Charge'?: ChargeComponent;
617
+ /**
618
+ * A list of fee component information.
619
+ */
620
+ 'FeeList'?: Array<FeeComponent>;
621
+ /**
622
+ * The type of payment. Possible values: * `Sales`
623
+ */
624
+ 'PaymentAmountType'?: string;
625
+ /**
626
+ * A short description of this payment event.
627
+ */
628
+ 'AmountDescription'?: string;
629
+ /**
630
+ * The fulfillment channel. Possible values: * `AFN`: Amazon Fulfillment Network (Fulfillment by Amazon) * `MFN`: Merchant Fulfillment Network (self-fulfilled)
631
+ */
632
+ 'FulfillmentChannel'?: string;
633
+ /**
634
+ * The name of the store where the event occurred.
635
+ */
636
+ 'StoreName'?: string;
890
637
  }
891
-
892
- /**
893
- * Selling Partner API for Finances
894
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
895
- *
896
- * The version of the OpenAPI document: v0
897
- *
898
- *
899
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
900
- * https://openapi-generator.tech
901
- * Do not edit the class manually.
902
- */
903
-
638
+ //#endregion
639
+ //#region src/api-model/models/product-ads-payment-event.d.ts
904
640
  /**
905
641
  * A Sponsored Products payment event.
906
642
  */
907
643
  interface ProductAdsPaymentEvent {
908
- /**
909
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
910
- */
911
- 'postedDate'?: string;
912
- /**
913
- * Indicates if the transaction is for a charge or a refund. Possible values: * `charge` * `refund`
914
- */
915
- 'transactionType'?: string;
916
- /**
917
- * The identifier for the invoice that includes the transaction.
918
- */
919
- 'invoiceId'?: string;
920
- 'baseValue'?: Currency;
921
- 'taxValue'?: Currency;
922
- 'transactionValue'?: Currency;
923
- }
924
-
925
- /**
926
- * Selling Partner API for Finances
927
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
928
- *
929
- * The version of the OpenAPI document: v0
930
- *
931
- *
932
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
933
- * https://openapi-generator.tech
934
- * Do not edit the class manually.
935
- */
936
-
937
- /**
938
- * Item-level information for a removal shipment item adjustment.
939
- */
940
- interface RemovalShipmentItemAdjustment {
941
- /**
942
- * An identifier for an item in a removal shipment.
943
- */
944
- 'RemovalShipmentItemId'?: string;
945
- /**
946
- * The tax collection model that is applied to the item. Possible values: * `MarketplaceFacilitator`: Tax is withheld and remitted to the taxing authority by Amazon on behalf of the seller. * `Standard`: Tax is paid to the seller and not remitted to the taxing authority by Amazon.
947
- */
948
- 'TaxCollectionModel'?: string;
949
- /**
950
- * The Amazon fulfillment network SKU for the item.
951
- */
952
- 'FulfillmentNetworkSKU'?: string;
953
- /**
954
- * Adjusted quantity of `RemovalShipmentItemAdjustment` items.
955
- */
956
- 'AdjustedQuantity'?: number;
957
- 'RevenueAdjustment'?: Currency;
958
- 'TaxAmountAdjustment'?: Currency;
959
- 'TaxWithheldAdjustment'?: Currency;
644
+ /**
645
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
646
+ */
647
+ 'postedDate'?: string;
648
+ /**
649
+ * Indicates if the transaction is for a charge or a refund. Possible values: * `charge` * `refund`
650
+ */
651
+ 'transactionType'?: string;
652
+ /**
653
+ * The identifier for the invoice that includes the transaction.
654
+ */
655
+ 'invoiceId'?: string;
656
+ 'baseValue'?: Currency;
657
+ 'taxValue'?: Currency;
658
+ 'transactionValue'?: Currency;
960
659
  }
961
-
660
+ //#endregion
661
+ //#region src/api-model/models/removal-shipment-item-adjustment.d.ts
962
662
  /**
963
- * Selling Partner API for Finances
964
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
965
- *
966
- * The version of the OpenAPI document: v0
967
- *
968
- *
969
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
970
- * https://openapi-generator.tech
971
- * Do not edit the class manually.
663
+ * Item-level information for a removal shipment item adjustment.
972
664
  */
973
-
665
+ interface RemovalShipmentItemAdjustment {
666
+ /**
667
+ * An identifier for an item in a removal shipment.
668
+ */
669
+ 'RemovalShipmentItemId'?: string;
670
+ /**
671
+ * The tax collection model that is applied to the item. Possible values: * `MarketplaceFacilitator`: Tax is withheld and remitted to the taxing authority by Amazon on behalf of the seller. * `Standard`: Tax is paid to the seller and not remitted to the taxing authority by Amazon.
672
+ */
673
+ 'TaxCollectionModel'?: string;
674
+ /**
675
+ * The Amazon fulfillment network SKU for the item.
676
+ */
677
+ 'FulfillmentNetworkSKU'?: string;
678
+ /**
679
+ * Adjusted quantity of `RemovalShipmentItemAdjustment` items.
680
+ */
681
+ 'AdjustedQuantity'?: number;
682
+ 'RevenueAdjustment'?: Currency;
683
+ 'TaxAmountAdjustment'?: Currency;
684
+ 'TaxWithheldAdjustment'?: Currency;
685
+ }
686
+ //#endregion
687
+ //#region src/api-model/models/removal-shipment-adjustment-event.d.ts
974
688
  /**
975
689
  * A financial adjustment event for FBA liquidated inventory. A positive value indicates money owed to Amazon by the buyer (for example, when the charge was incorrectly calculated as less than it should be). A negative value indicates a full or partial refund owed to the buyer (for example, when the buyer receives damaged items or fewer items than ordered).
976
690
  */
977
691
  interface RemovalShipmentAdjustmentEvent {
978
- /**
979
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
980
- */
981
- 'PostedDate'?: string;
982
- /**
983
- * The unique identifier for the adjustment event.
984
- */
985
- 'AdjustmentEventId'?: string;
986
- /**
987
- * The merchant removal orderId.
988
- */
989
- 'MerchantOrderId'?: string;
990
- /**
991
- * The orderId for shipping inventory.
992
- */
993
- 'OrderId'?: string;
994
- /**
995
- * The type of removal order. Possible values: * `WHOLESALE_LIQUIDATION`.
996
- */
997
- 'TransactionType'?: string;
998
- /**
999
- * A comma-delimited list of `RemovalShipmentItemAdjustment` details for FBA inventory.
1000
- */
1001
- 'RemovalShipmentItemAdjustmentList'?: Array<RemovalShipmentItemAdjustment>;
692
+ /**
693
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
694
+ */
695
+ 'PostedDate'?: string;
696
+ /**
697
+ * The unique identifier for the adjustment event.
698
+ */
699
+ 'AdjustmentEventId'?: string;
700
+ /**
701
+ * The merchant removal orderId.
702
+ */
703
+ 'MerchantOrderId'?: string;
704
+ /**
705
+ * The orderId for shipping inventory.
706
+ */
707
+ 'OrderId'?: string;
708
+ /**
709
+ * The type of removal order. Possible values: * `WHOLESALE_LIQUIDATION`.
710
+ */
711
+ 'TransactionType'?: string;
712
+ /**
713
+ * A comma-delimited list of `RemovalShipmentItemAdjustment` details for FBA inventory.
714
+ */
715
+ 'RemovalShipmentItemAdjustmentList'?: Array<RemovalShipmentItemAdjustment>;
1002
716
  }
1003
-
1004
- /**
1005
- * Selling Partner API for Finances
1006
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1007
- *
1008
- * The version of the OpenAPI document: v0
1009
- *
1010
- *
1011
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1012
- * https://openapi-generator.tech
1013
- * Do not edit the class manually.
1014
- */
1015
-
717
+ //#endregion
718
+ //#region src/api-model/models/removal-shipment-item.d.ts
1016
719
  /**
1017
720
  * Item-level information for a removal shipment.
1018
721
  */
1019
722
  interface RemovalShipmentItem {
1020
- /**
1021
- * An identifier for an item in a removal shipment.
1022
- */
1023
- 'RemovalShipmentItemId'?: string;
1024
- /**
1025
- * The tax collection model that is applied to the item. Possible values: * `MarketplaceFacilitator`: Tax is withheld and remitted to the taxing authority by Amazon on behalf of the seller. * `Standard`: Tax is paid to the seller and not remitted to the taxing authority by Amazon.
1026
- */
1027
- 'TaxCollectionModel'?: string;
1028
- /**
1029
- * The Amazon fulfillment network SKU for the item.
1030
- */
1031
- 'FulfillmentNetworkSKU'?: string;
1032
- /**
1033
- * The quantity of the item.
1034
- */
1035
- 'Quantity'?: number;
1036
- 'Revenue'?: Currency;
1037
- 'FeeAmount'?: Currency;
1038
- 'TaxAmount'?: Currency;
1039
- 'TaxWithheld'?: Currency;
723
+ /**
724
+ * An identifier for an item in a removal shipment.
725
+ */
726
+ 'RemovalShipmentItemId'?: string;
727
+ /**
728
+ * The tax collection model that is applied to the item. Possible values: * `MarketplaceFacilitator`: Tax is withheld and remitted to the taxing authority by Amazon on behalf of the seller. * `Standard`: Tax is paid to the seller and not remitted to the taxing authority by Amazon.
729
+ */
730
+ 'TaxCollectionModel'?: string;
731
+ /**
732
+ * The Amazon fulfillment network SKU for the item.
733
+ */
734
+ 'FulfillmentNetworkSKU'?: string;
735
+ /**
736
+ * The quantity of the item.
737
+ */
738
+ 'Quantity'?: number;
739
+ 'Revenue'?: Currency;
740
+ 'FeeAmount'?: Currency;
741
+ 'TaxAmount'?: Currency;
742
+ 'TaxWithheld'?: Currency;
1040
743
  }
1041
-
1042
- /**
1043
- * Selling Partner API for Finances
1044
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1045
- *
1046
- * The version of the OpenAPI document: v0
1047
- *
1048
- *
1049
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1050
- * https://openapi-generator.tech
1051
- * Do not edit the class manually.
1052
- */
1053
-
744
+ //#endregion
745
+ //#region src/api-model/models/removal-shipment-event.d.ts
1054
746
  /**
1055
747
  * A removal shipment event for a removal order.
1056
748
  */
1057
749
  interface RemovalShipmentEvent {
1058
- /**
1059
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1060
- */
1061
- 'PostedDate'?: string;
1062
- /**
1063
- * The merchant removal `orderId`.
1064
- */
1065
- 'MerchantOrderId'?: string;
1066
- /**
1067
- * The identifier for the removal shipment order.
1068
- */
1069
- 'OrderId'?: string;
1070
- /**
1071
- * The type of removal order. Possible values: * `WHOLESALE_LIQUIDATION`
1072
- */
1073
- 'TransactionType'?: string;
1074
- /**
1075
- * The name of the store where the event occurred.
1076
- */
1077
- 'StoreName'?: string;
1078
- /**
1079
- * A list of `RemovalShipmentItem`.
1080
- */
1081
- 'RemovalShipmentItemList'?: Array<RemovalShipmentItem>;
750
+ /**
751
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
752
+ */
753
+ 'PostedDate'?: string;
754
+ /**
755
+ * The merchant removal `orderId`.
756
+ */
757
+ 'MerchantOrderId'?: string;
758
+ /**
759
+ * The identifier for the removal shipment order.
760
+ */
761
+ 'OrderId'?: string;
762
+ /**
763
+ * The type of removal order. Possible values: * `WHOLESALE_LIQUIDATION`
764
+ */
765
+ 'TransactionType'?: string;
766
+ /**
767
+ * The name of the store where the event occurred.
768
+ */
769
+ 'StoreName'?: string;
770
+ /**
771
+ * A list of `RemovalShipmentItem`.
772
+ */
773
+ 'RemovalShipmentItemList'?: Array<RemovalShipmentItem>;
1082
774
  }
1083
-
1084
- /**
1085
- * Selling Partner API for Finances
1086
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1087
- *
1088
- * The version of the OpenAPI document: v0
1089
- *
1090
- *
1091
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1092
- * https://openapi-generator.tech
1093
- * Do not edit the class manually.
1094
- */
1095
-
775
+ //#endregion
776
+ //#region src/api-model/models/tax-withheld-component.d.ts
1096
777
  /**
1097
778
  * Information about the taxes withheld.
1098
779
  */
1099
780
  interface TaxWithheldComponent {
1100
- /**
1101
- * The tax collection model applied to the item. Possible values: * `MarketplaceFacilitator`: Tax is withheld and remitted to the taxing authority by Amazon on behalf of the seller. * `Standard`: Tax is paid to the seller and not remitted to the taxing authority by Amazon.
1102
- */
1103
- 'TaxCollectionModel'?: string;
1104
- /**
1105
- * A list of charge information on the seller\'s account.
1106
- */
1107
- 'TaxesWithheld'?: Array<ChargeComponent>;
781
+ /**
782
+ * The tax collection model applied to the item. Possible values: * `MarketplaceFacilitator`: Tax is withheld and remitted to the taxing authority by Amazon on behalf of the seller. * `Standard`: Tax is paid to the seller and not remitted to the taxing authority by Amazon.
783
+ */
784
+ 'TaxCollectionModel'?: string;
785
+ /**
786
+ * A list of charge information on the seller\'s account.
787
+ */
788
+ 'TaxesWithheld'?: Array<ChargeComponent>;
1108
789
  }
1109
-
1110
- /**
1111
- * Selling Partner API for Finances
1112
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1113
- *
1114
- * The version of the OpenAPI document: v0
1115
- *
1116
- *
1117
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1118
- * https://openapi-generator.tech
1119
- * Do not edit the class manually.
1120
- */
1121
-
790
+ //#endregion
791
+ //#region src/api-model/models/rental-transaction-event.d.ts
1122
792
  /**
1123
793
  * An event related to a rental transaction.
1124
794
  */
1125
795
  interface RentalTransactionEvent {
1126
- /**
1127
- * An Amazon-defined identifier for an order.
1128
- */
1129
- 'AmazonOrderId'?: string;
1130
- /**
1131
- * The type of rental event. Possible values: * `RentalCustomerPayment-Buyout`: A transaction type that represents when the customer wants to buy out a rented item. * `RentalCustomerPayment-Extension`: A transaction type that represents when the customer wants to extend the rental period. * `RentalCustomerRefund-Buyout`: A transaction type that represents when the customer requests a refund for the buyout of the rented item. * `RentalCustomerRefund-Extension`: A transaction type that represents when the customer requests a refund over the extension on the rented item. * `RentalHandlingFee`: A transaction type that represents the fee that Amazon charges sellers who rent through Amazon. * `RentalChargeFailureReimbursement`: A transaction type that represents when Amazon sends money to the seller to compensate for a failed charge. * `RentalLostItemReimbursement`: A transaction type that represents when Amazon sends money to the seller to compensate for a lost item.
1132
- */
1133
- 'RentalEventType'?: string;
1134
- /**
1135
- * The number of days that the buyer extended an already rented item. This value is only returned for `RentalCustomerPayment-Extension` and `RentalCustomerRefund-Extension` events.
1136
- */
1137
- 'ExtensionLength'?: number;
1138
- /**
1139
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1140
- */
1141
- 'PostedDate'?: string;
1142
- /**
1143
- * A list of charge information on the seller\'s account.
1144
- */
1145
- 'RentalChargeList'?: Array<ChargeComponent>;
1146
- /**
1147
- * A list of fee component information.
1148
- */
1149
- 'RentalFeeList'?: Array<FeeComponent>;
1150
- /**
1151
- * The name of the marketplace.
1152
- */
1153
- 'MarketplaceName'?: string;
1154
- 'RentalInitialValue'?: Currency;
1155
- 'RentalReimbursement'?: Currency;
1156
- /**
1157
- * A list of information about taxes withheld.
1158
- */
1159
- 'RentalTaxWithheldList'?: Array<TaxWithheldComponent>;
796
+ /**
797
+ * An Amazon-defined identifier for an order.
798
+ */
799
+ 'AmazonOrderId'?: string;
800
+ /**
801
+ * The type of rental event. Possible values: * `RentalCustomerPayment-Buyout`: A transaction type that represents when the customer wants to buy out a rented item. * `RentalCustomerPayment-Extension`: A transaction type that represents when the customer wants to extend the rental period. * `RentalCustomerRefund-Buyout`: A transaction type that represents when the customer requests a refund for the buyout of the rented item. * `RentalCustomerRefund-Extension`: A transaction type that represents when the customer requests a refund over the extension on the rented item. * `RentalHandlingFee`: A transaction type that represents the fee that Amazon charges sellers who rent through Amazon. * `RentalChargeFailureReimbursement`: A transaction type that represents when Amazon sends money to the seller to compensate for a failed charge. * `RentalLostItemReimbursement`: A transaction type that represents when Amazon sends money to the seller to compensate for a lost item.
802
+ */
803
+ 'RentalEventType'?: string;
804
+ /**
805
+ * The number of days that the buyer extended an already rented item. This value is only returned for `RentalCustomerPayment-Extension` and `RentalCustomerRefund-Extension` events.
806
+ */
807
+ 'ExtensionLength'?: number;
808
+ /**
809
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
810
+ */
811
+ 'PostedDate'?: string;
812
+ /**
813
+ * A list of charge information on the seller\'s account.
814
+ */
815
+ 'RentalChargeList'?: Array<ChargeComponent>;
816
+ /**
817
+ * A list of fee component information.
818
+ */
819
+ 'RentalFeeList'?: Array<FeeComponent>;
820
+ /**
821
+ * The name of the marketplace.
822
+ */
823
+ 'MarketplaceName'?: string;
824
+ 'RentalInitialValue'?: Currency;
825
+ 'RentalReimbursement'?: Currency;
826
+ /**
827
+ * A list of information about taxes withheld.
828
+ */
829
+ 'RentalTaxWithheldList'?: Array<TaxWithheldComponent>;
1160
830
  }
1161
-
1162
- /**
1163
- * Selling Partner API for Finances
1164
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1165
- *
1166
- * The version of the OpenAPI document: v0
1167
- *
1168
- *
1169
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1170
- * https://openapi-generator.tech
1171
- * Do not edit the class manually.
1172
- */
1173
-
831
+ //#endregion
832
+ //#region src/api-model/models/retrocharge-event.d.ts
1174
833
  /**
1175
834
  * A retrocharge or retrocharge reversal.
1176
835
  */
1177
836
  interface RetrochargeEvent {
1178
- /**
1179
- * The type of event. Possible values: * `Retrocharge` * `RetrochargeReversal`
1180
- */
1181
- 'RetrochargeEventType'?: string;
1182
- /**
1183
- * An Amazon-defined identifier for an order.
1184
- */
1185
- 'AmazonOrderId'?: string;
1186
- /**
1187
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1188
- */
1189
- 'PostedDate'?: string;
1190
- 'BaseTax'?: Currency;
1191
- 'ShippingTax'?: Currency;
1192
- /**
1193
- * The name of the marketplace where the retrocharge event occurred.
1194
- */
1195
- 'MarketplaceName'?: string;
1196
- /**
1197
- * A list of information about taxes withheld.
1198
- */
1199
- 'RetrochargeTaxWithheldList'?: Array<TaxWithheldComponent>;
837
+ /**
838
+ * The type of event. Possible values: * `Retrocharge` * `RetrochargeReversal`
839
+ */
840
+ 'RetrochargeEventType'?: string;
841
+ /**
842
+ * An Amazon-defined identifier for an order.
843
+ */
844
+ 'AmazonOrderId'?: string;
845
+ /**
846
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
847
+ */
848
+ 'PostedDate'?: string;
849
+ 'BaseTax'?: Currency;
850
+ 'ShippingTax'?: Currency;
851
+ /**
852
+ * The name of the marketplace where the retrocharge event occurred.
853
+ */
854
+ 'MarketplaceName'?: string;
855
+ /**
856
+ * A list of information about taxes withheld.
857
+ */
858
+ 'RetrochargeTaxWithheldList'?: Array<TaxWithheldComponent>;
1200
859
  }
1201
-
1202
- /**
1203
- * Selling Partner API for Finances
1204
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1205
- *
1206
- * The version of the OpenAPI document: v0
1207
- *
1208
- *
1209
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1210
- * https://openapi-generator.tech
1211
- * Do not edit the class manually.
1212
- */
1213
-
860
+ //#endregion
861
+ //#region src/api-model/models/safetreimbursement-item.d.ts
1214
862
  /**
1215
863
  * An item from a SAFE-T claim reimbursement.
1216
864
  */
1217
865
  interface SAFETReimbursementItem {
1218
- /**
1219
- * A list of charge information on the seller\'s account.
1220
- */
1221
- 'itemChargeList'?: Array<ChargeComponent>;
1222
- /**
1223
- * The description of the item as shown on the product detail page on the retail website.
1224
- */
1225
- 'productDescription'?: string;
1226
- /**
1227
- * The number of units of the item being reimbursed.
1228
- */
1229
- 'quantity'?: string;
866
+ /**
867
+ * A list of charge information on the seller\'s account.
868
+ */
869
+ 'itemChargeList'?: Array<ChargeComponent>;
870
+ /**
871
+ * The description of the item as shown on the product detail page on the retail website.
872
+ */
873
+ 'productDescription'?: string;
874
+ /**
875
+ * The number of units of the item being reimbursed.
876
+ */
877
+ 'quantity'?: string;
1230
878
  }
1231
-
1232
- /**
1233
- * Selling Partner API for Finances
1234
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1235
- *
1236
- * The version of the OpenAPI document: v0
1237
- *
1238
- *
1239
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1240
- * https://openapi-generator.tech
1241
- * Do not edit the class manually.
1242
- */
1243
-
879
+ //#endregion
880
+ //#region src/api-model/models/safetreimbursement-event.d.ts
1244
881
  /**
1245
882
  * A SAFE-T claim reimbursement on the seller\'s account.
1246
883
  */
1247
884
  interface SAFETReimbursementEvent {
1248
- /**
1249
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1250
- */
1251
- 'PostedDate'?: string;
1252
- /**
1253
- * A SAFE-T claim identifier.
1254
- */
1255
- 'SAFETClaimId'?: string;
1256
- 'ReimbursedAmount'?: Currency;
1257
- /**
1258
- * Indicates why the seller was reimbursed.
1259
- */
1260
- 'ReasonCode'?: string;
1261
- /**
1262
- * A list of `SAFETReimbursementItem`.
1263
- */
1264
- 'SAFETReimbursementItemList'?: Array<SAFETReimbursementItem>;
885
+ /**
886
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
887
+ */
888
+ 'PostedDate'?: string;
889
+ /**
890
+ * A SAFE-T claim identifier.
891
+ */
892
+ 'SAFETClaimId'?: string;
893
+ 'ReimbursedAmount'?: Currency;
894
+ /**
895
+ * Indicates why the seller was reimbursed.
896
+ */
897
+ 'ReasonCode'?: string;
898
+ /**
899
+ * A list of `SAFETReimbursementItem`.
900
+ */
901
+ 'SAFETReimbursementItemList'?: Array<SAFETReimbursementItem>;
1265
902
  }
1266
-
1267
- /**
1268
- * Selling Partner API for Finances
1269
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1270
- *
1271
- * The version of the OpenAPI document: v0
1272
- *
1273
- *
1274
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1275
- * https://openapi-generator.tech
1276
- * Do not edit the class manually.
1277
- */
1278
-
903
+ //#endregion
904
+ //#region src/api-model/models/seller-deal-payment-event.d.ts
1279
905
  /**
1280
906
  * An event linked to the payment of a fee related to the specified deal.
1281
907
  */
1282
908
  interface SellerDealPaymentEvent {
1283
- /**
1284
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1285
- */
1286
- 'postedDate'?: string;
1287
- /**
1288
- * The unique identifier of the deal.
1289
- */
1290
- 'dealId'?: string;
1291
- /**
1292
- * The internal description of the deal.
1293
- */
1294
- 'dealDescription'?: string;
1295
- /**
1296
- * The type of event: `SellerDealComplete`.
1297
- */
1298
- 'eventType'?: string;
1299
- /**
1300
- * The type of fee: `RunLightningDealFee`.
1301
- */
1302
- 'feeType'?: string;
1303
- 'feeAmount'?: Currency;
1304
- 'taxAmount'?: Currency;
1305
- 'totalAmount'?: Currency;
909
+ /**
910
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
911
+ */
912
+ 'postedDate'?: string;
913
+ /**
914
+ * The unique identifier of the deal.
915
+ */
916
+ 'dealId'?: string;
917
+ /**
918
+ * The internal description of the deal.
919
+ */
920
+ 'dealDescription'?: string;
921
+ /**
922
+ * The type of event: `SellerDealComplete`.
923
+ */
924
+ 'eventType'?: string;
925
+ /**
926
+ * The type of fee: `RunLightningDealFee`.
927
+ */
928
+ 'feeType'?: string;
929
+ 'feeAmount'?: Currency;
930
+ 'taxAmount'?: Currency;
931
+ 'totalAmount'?: Currency;
1306
932
  }
1307
-
1308
- /**
1309
- * Selling Partner API for Finances
1310
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1311
- *
1312
- * The version of the OpenAPI document: v0
1313
- *
1314
- *
1315
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1316
- * https://openapi-generator.tech
1317
- * Do not edit the class manually.
1318
- */
1319
-
933
+ //#endregion
934
+ //#region src/api-model/models/seller-review-enrollment-payment-event.d.ts
1320
935
  /**
1321
936
  * A fee payment event for the Early Reviewer Program.
1322
937
  */
1323
938
  interface SellerReviewEnrollmentPaymentEvent {
1324
- /**
1325
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1326
- */
1327
- 'PostedDate'?: string;
1328
- /**
1329
- * An enrollment identifier.
1330
- */
1331
- 'EnrollmentId'?: string;
1332
- /**
1333
- * The Amazon Standard Identification Number (ASIN) of the item that was enrolled in the Early Reviewer Program.
1334
- */
1335
- 'ParentASIN'?: string;
1336
- 'FeeComponent'?: FeeComponent;
1337
- 'ChargeComponent'?: ChargeComponent;
1338
- 'TotalAmount'?: Currency;
939
+ /**
940
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
941
+ */
942
+ 'PostedDate'?: string;
943
+ /**
944
+ * An enrollment identifier.
945
+ */
946
+ 'EnrollmentId'?: string;
947
+ /**
948
+ * The Amazon Standard Identification Number (ASIN) of the item that was enrolled in the Early Reviewer Program.
949
+ */
950
+ 'ParentASIN'?: string;
951
+ 'FeeComponent'?: FeeComponent;
952
+ 'ChargeComponent'?: ChargeComponent;
953
+ 'TotalAmount'?: Currency;
1339
954
  }
1340
-
1341
- /**
1342
- * Selling Partner API for Finances
1343
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1344
- *
1345
- * The version of the OpenAPI document: v0
1346
- *
1347
- *
1348
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1349
- * https://openapi-generator.tech
1350
- * Do not edit the class manually.
1351
- */
1352
-
955
+ //#endregion
956
+ //#region src/api-model/models/service-fee-event.d.ts
1353
957
  /**
1354
958
  * A service fee on the seller\'s account.
1355
959
  */
1356
960
  interface ServiceFeeEvent {
1357
- /**
1358
- * An Amazon-defined identifier for an order.
1359
- */
1360
- 'AmazonOrderId'?: string;
1361
- /**
1362
- * A short description of the service fee reason.
1363
- */
1364
- 'FeeReason'?: string;
1365
- /**
1366
- * A list of fee component information.
1367
- */
1368
- 'FeeList'?: Array<FeeComponent>;
1369
- /**
1370
- * The seller SKU of the item. The seller SKU is qualified by the seller\'s seller ID, which is included with every call to the Selling Partner API.
1371
- */
1372
- 'SellerSKU'?: string;
1373
- /**
1374
- * A unique identifier assigned by Amazon to products stored in and fulfilled from an Amazon fulfillment center.
1375
- */
1376
- 'FnSKU'?: string;
1377
- /**
1378
- * A short description of the service fee event.
1379
- */
1380
- 'FeeDescription'?: string;
1381
- /**
1382
- * The Amazon Standard Identification Number (ASIN) of the item.
1383
- */
1384
- 'ASIN'?: string;
1385
- /**
1386
- * The name of the store where the event occurred.
1387
- */
1388
- 'StoreName'?: string;
961
+ /**
962
+ * An Amazon-defined identifier for an order.
963
+ */
964
+ 'AmazonOrderId'?: string;
965
+ /**
966
+ * A short description of the service fee reason.
967
+ */
968
+ 'FeeReason'?: string;
969
+ /**
970
+ * A list of fee component information.
971
+ */
972
+ 'FeeList'?: Array<FeeComponent>;
973
+ /**
974
+ * The seller SKU of the item. The seller SKU is qualified by the seller\'s seller ID, which is included with every call to the Selling Partner API.
975
+ */
976
+ 'SellerSKU'?: string;
977
+ /**
978
+ * A unique identifier assigned by Amazon to products stored in and fulfilled from an Amazon fulfillment center.
979
+ */
980
+ 'FnSKU'?: string;
981
+ /**
982
+ * A short description of the service fee event.
983
+ */
984
+ 'FeeDescription'?: string;
985
+ /**
986
+ * The Amazon Standard Identification Number (ASIN) of the item.
987
+ */
988
+ 'ASIN'?: string;
989
+ /**
990
+ * The name of the store where the event occurred.
991
+ */
992
+ 'StoreName'?: string;
1389
993
  }
1390
-
1391
- /**
1392
- * Selling Partner API for Finances
1393
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1394
- *
1395
- * The version of the OpenAPI document: v0
1396
- *
1397
- *
1398
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1399
- * https://openapi-generator.tech
1400
- * Do not edit the class manually.
1401
- */
1402
-
994
+ //#endregion
995
+ //#region src/api-model/models/promotion.d.ts
1403
996
  /**
1404
997
  * A promotion applied to an item.
1405
998
  */
1406
999
  interface Promotion {
1407
- /**
1408
- * The type of promotion.
1409
- */
1410
- 'PromotionType'?: string;
1411
- /**
1412
- * The seller-specified identifier for the promotion.
1413
- */
1414
- 'PromotionId'?: string;
1415
- 'PromotionAmount'?: Currency;
1000
+ /**
1001
+ * The type of promotion.
1002
+ */
1003
+ 'PromotionType'?: string;
1004
+ /**
1005
+ * The seller-specified identifier for the promotion.
1006
+ */
1007
+ 'PromotionId'?: string;
1008
+ 'PromotionAmount'?: Currency;
1416
1009
  }
1417
-
1418
- /**
1419
- * Selling Partner API for Finances
1420
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1421
- *
1422
- * The version of the OpenAPI document: v0
1423
- *
1424
- *
1425
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1426
- * https://openapi-generator.tech
1427
- * Do not edit the class manually.
1428
- */
1429
-
1010
+ //#endregion
1011
+ //#region src/api-model/models/shipment-item.d.ts
1430
1012
  /**
1431
1013
  * An item of a shipment, refund, guarantee claim, or chargeback.
1432
1014
  */
1433
1015
  interface ShipmentItem {
1434
- /**
1435
- * The seller SKU of the item. The seller SKU is qualified by the seller\'s seller ID, which is included with every call to the Selling Partner API.
1436
- */
1437
- 'SellerSKU'?: string;
1438
- /**
1439
- * An Amazon-defined order item identifier.
1440
- */
1441
- 'OrderItemId'?: string;
1442
- /**
1443
- * An Amazon-defined order adjustment identifier defined for refunds, guarantee claims, and chargeback events.
1444
- */
1445
- 'OrderAdjustmentItemId'?: string;
1446
- /**
1447
- * The number of items shipped.
1448
- */
1449
- 'QuantityShipped'?: number;
1450
- /**
1451
- * A list of charge information on the seller\'s account.
1452
- */
1453
- 'ItemChargeList'?: Array<ChargeComponent>;
1454
- /**
1455
- * A list of charge information on the seller\'s account.
1456
- */
1457
- 'ItemChargeAdjustmentList'?: Array<ChargeComponent>;
1458
- /**
1459
- * A list of fee component information.
1460
- */
1461
- 'ItemFeeList'?: Array<FeeComponent>;
1462
- /**
1463
- * A list of fee component information.
1464
- */
1465
- 'ItemFeeAdjustmentList'?: Array<FeeComponent>;
1466
- /**
1467
- * A list of information about taxes withheld.
1468
- */
1469
- 'ItemTaxWithheldList'?: Array<TaxWithheldComponent>;
1470
- /**
1471
- * A list of promotions.
1472
- */
1473
- 'PromotionList'?: Array<Promotion>;
1474
- /**
1475
- * A list of promotions.
1476
- */
1477
- 'PromotionAdjustmentList'?: Array<Promotion>;
1478
- 'CostOfPointsGranted'?: Currency;
1479
- 'CostOfPointsReturned'?: Currency;
1016
+ /**
1017
+ * The seller SKU of the item. The seller SKU is qualified by the seller\'s seller ID, which is included with every call to the Selling Partner API.
1018
+ */
1019
+ 'SellerSKU'?: string;
1020
+ /**
1021
+ * An Amazon-defined order item identifier.
1022
+ */
1023
+ 'OrderItemId'?: string;
1024
+ /**
1025
+ * An Amazon-defined order adjustment identifier defined for refunds, guarantee claims, and chargeback events.
1026
+ */
1027
+ 'OrderAdjustmentItemId'?: string;
1028
+ /**
1029
+ * The number of items shipped.
1030
+ */
1031
+ 'QuantityShipped'?: number;
1032
+ /**
1033
+ * A list of charge information on the seller\'s account.
1034
+ */
1035
+ 'ItemChargeList'?: Array<ChargeComponent>;
1036
+ /**
1037
+ * A list of charge information on the seller\'s account.
1038
+ */
1039
+ 'ItemChargeAdjustmentList'?: Array<ChargeComponent>;
1040
+ /**
1041
+ * A list of fee component information.
1042
+ */
1043
+ 'ItemFeeList'?: Array<FeeComponent>;
1044
+ /**
1045
+ * A list of fee component information.
1046
+ */
1047
+ 'ItemFeeAdjustmentList'?: Array<FeeComponent>;
1048
+ /**
1049
+ * A list of information about taxes withheld.
1050
+ */
1051
+ 'ItemTaxWithheldList'?: Array<TaxWithheldComponent>;
1052
+ /**
1053
+ * A list of promotions.
1054
+ */
1055
+ 'PromotionList'?: Array<Promotion>;
1056
+ /**
1057
+ * A list of promotions.
1058
+ */
1059
+ 'PromotionAdjustmentList'?: Array<Promotion>;
1060
+ 'CostOfPointsGranted'?: Currency;
1061
+ 'CostOfPointsReturned'?: Currency;
1480
1062
  }
1481
-
1482
- /**
1483
- * Selling Partner API for Finances
1484
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1485
- *
1486
- * The version of the OpenAPI document: v0
1487
- *
1488
- *
1489
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1490
- * https://openapi-generator.tech
1491
- * Do not edit the class manually.
1492
- */
1493
-
1063
+ //#endregion
1064
+ //#region src/api-model/models/shipment-event.d.ts
1494
1065
  /**
1495
1066
  * A shipment, refund, guarantee claim, or chargeback.
1496
1067
  */
1497
1068
  interface ShipmentEvent {
1498
- /**
1499
- * An Amazon-defined identifier for an order.
1500
- */
1501
- 'AmazonOrderId'?: string;
1502
- /**
1503
- * A seller-defined identifier for an order.
1504
- */
1505
- 'SellerOrderId'?: string;
1506
- /**
1507
- * The name of the marketplace where the event occurred.
1508
- */
1509
- 'MarketplaceName'?: string;
1510
- /**
1511
- * The name of the store where the event occurred.
1512
- */
1513
- 'StoreName'?: string;
1514
- /**
1515
- * A list of charge information on the seller\'s account.
1516
- */
1517
- 'OrderChargeList'?: Array<ChargeComponent>;
1518
- /**
1519
- * A list of charge information on the seller\'s account.
1520
- */
1521
- 'OrderChargeAdjustmentList'?: Array<ChargeComponent>;
1522
- /**
1523
- * A list of fee component information.
1524
- */
1525
- 'ShipmentFeeList'?: Array<FeeComponent>;
1526
- /**
1527
- * A list of fee component information.
1528
- */
1529
- 'ShipmentFeeAdjustmentList'?: Array<FeeComponent>;
1530
- /**
1531
- * A list of fee component information.
1532
- */
1533
- 'OrderFeeList'?: Array<FeeComponent>;
1534
- /**
1535
- * A list of fee component information.
1536
- */
1537
- 'OrderFeeAdjustmentList'?: Array<FeeComponent>;
1538
- /**
1539
- * A list of direct payment information.
1540
- */
1541
- 'DirectPaymentList'?: Array<DirectPayment>;
1542
- /**
1543
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1544
- */
1545
- 'PostedDate'?: string;
1546
- /**
1547
- * A list of shipment items.
1548
- */
1549
- 'ShipmentItemList'?: Array<ShipmentItem>;
1550
- /**
1551
- * A list of shipment items.
1552
- */
1553
- 'ShipmentItemAdjustmentList'?: Array<ShipmentItem>;
1069
+ /**
1070
+ * An Amazon-defined identifier for an order.
1071
+ */
1072
+ 'AmazonOrderId'?: string;
1073
+ /**
1074
+ * A seller-defined identifier for an order.
1075
+ */
1076
+ 'SellerOrderId'?: string;
1077
+ /**
1078
+ * The name of the marketplace where the event occurred.
1079
+ */
1080
+ 'MarketplaceName'?: string;
1081
+ /**
1082
+ * The name of the store where the event occurred.
1083
+ */
1084
+ 'StoreName'?: string;
1085
+ /**
1086
+ * A list of charge information on the seller\'s account.
1087
+ */
1088
+ 'OrderChargeList'?: Array<ChargeComponent>;
1089
+ /**
1090
+ * A list of charge information on the seller\'s account.
1091
+ */
1092
+ 'OrderChargeAdjustmentList'?: Array<ChargeComponent>;
1093
+ /**
1094
+ * A list of fee component information.
1095
+ */
1096
+ 'ShipmentFeeList'?: Array<FeeComponent>;
1097
+ /**
1098
+ * A list of fee component information.
1099
+ */
1100
+ 'ShipmentFeeAdjustmentList'?: Array<FeeComponent>;
1101
+ /**
1102
+ * A list of fee component information.
1103
+ */
1104
+ 'OrderFeeList'?: Array<FeeComponent>;
1105
+ /**
1106
+ * A list of fee component information.
1107
+ */
1108
+ 'OrderFeeAdjustmentList'?: Array<FeeComponent>;
1109
+ /**
1110
+ * A list of direct payment information.
1111
+ */
1112
+ 'DirectPaymentList'?: Array<DirectPayment>;
1113
+ /**
1114
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1115
+ */
1116
+ 'PostedDate'?: string;
1117
+ /**
1118
+ * A list of shipment items.
1119
+ */
1120
+ 'ShipmentItemList'?: Array<ShipmentItem>;
1121
+ /**
1122
+ * A list of shipment items.
1123
+ */
1124
+ 'ShipmentItemAdjustmentList'?: Array<ShipmentItem>;
1554
1125
  }
1555
-
1556
- /**
1557
- * Selling Partner API for Finances
1558
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1559
- *
1560
- * The version of the OpenAPI document: v0
1561
- *
1562
- *
1563
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1564
- * https://openapi-generator.tech
1565
- * Do not edit the class manually.
1566
- */
1567
-
1126
+ //#endregion
1127
+ //#region src/api-model/models/solution-provider-credit-event.d.ts
1568
1128
  /**
1569
1129
  * A credit given to a solution provider.
1570
1130
  */
1571
1131
  interface SolutionProviderCreditEvent {
1572
- /**
1573
- * The transaction type.
1574
- */
1575
- 'ProviderTransactionType'?: string;
1576
- /**
1577
- * A seller-defined identifier for an order.
1578
- */
1579
- 'SellerOrderId'?: string;
1580
- /**
1581
- * The identifier of the marketplace where the order was placed.
1582
- */
1583
- 'MarketplaceId'?: string;
1584
- /**
1585
- * The two-letter country code of the country associated with the marketplace where the order was placed.
1586
- */
1587
- 'MarketplaceCountryCode'?: string;
1588
- /**
1589
- * The Amazon-defined identifier of the seller.
1590
- */
1591
- 'SellerId'?: string;
1592
- /**
1593
- * The store name where the payment event occurred.
1594
- */
1595
- 'SellerStoreName'?: string;
1596
- /**
1597
- * The Amazon-defined identifier of the solution provider.
1598
- */
1599
- 'ProviderId'?: string;
1600
- /**
1601
- * The store name where the payment event occurred.
1602
- */
1603
- 'ProviderStoreName'?: string;
1604
- 'TransactionAmount'?: Currency;
1605
- /**
1606
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1607
- */
1608
- 'TransactionCreationDate'?: string;
1132
+ /**
1133
+ * The transaction type.
1134
+ */
1135
+ 'ProviderTransactionType'?: string;
1136
+ /**
1137
+ * A seller-defined identifier for an order.
1138
+ */
1139
+ 'SellerOrderId'?: string;
1140
+ /**
1141
+ * The identifier of the marketplace where the order was placed.
1142
+ */
1143
+ 'MarketplaceId'?: string;
1144
+ /**
1145
+ * The two-letter country code of the country associated with the marketplace where the order was placed.
1146
+ */
1147
+ 'MarketplaceCountryCode'?: string;
1148
+ /**
1149
+ * The Amazon-defined identifier of the seller.
1150
+ */
1151
+ 'SellerId'?: string;
1152
+ /**
1153
+ * The store name where the payment event occurred.
1154
+ */
1155
+ 'SellerStoreName'?: string;
1156
+ /**
1157
+ * The Amazon-defined identifier of the solution provider.
1158
+ */
1159
+ 'ProviderId'?: string;
1160
+ /**
1161
+ * The store name where the payment event occurred.
1162
+ */
1163
+ 'ProviderStoreName'?: string;
1164
+ 'TransactionAmount'?: Currency;
1165
+ /**
1166
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1167
+ */
1168
+ 'TransactionCreationDate'?: string;
1609
1169
  }
1610
-
1611
- /**
1612
- * Selling Partner API for Finances
1613
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1614
- *
1615
- * The version of the OpenAPI document: v0
1616
- *
1617
- *
1618
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1619
- * https://openapi-generator.tech
1620
- * Do not edit the class manually.
1621
- */
1622
-
1170
+ //#endregion
1171
+ //#region src/api-model/models/tdsreimbursement-event.d.ts
1623
1172
  /**
1624
1173
  * An event related to a Tax-Deducted-at-Source (TDS) reimbursement.
1625
1174
  */
1626
1175
  interface TDSReimbursementEvent {
1627
- /**
1628
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1629
- */
1630
- 'PostedDate'?: string;
1631
- /**
1632
- * The Tax-Deducted-at-Source (TDS) identifier.
1633
- */
1634
- 'TDSOrderId'?: string;
1635
- 'ReimbursedAmount'?: Currency;
1176
+ /**
1177
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1178
+ */
1179
+ 'PostedDate'?: string;
1180
+ /**
1181
+ * The Tax-Deducted-at-Source (TDS) identifier.
1182
+ */
1183
+ 'TDSOrderId'?: string;
1184
+ 'ReimbursedAmount'?: Currency;
1636
1185
  }
1637
-
1186
+ //#endregion
1187
+ //#region src/api-model/models/tax-withholding-period.d.ts
1638
1188
  /**
1639
1189
  * Selling Partner API for Finances
1640
1190
  * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
@@ -1650,359 +1200,272 @@ interface TDSReimbursementEvent {
1650
1200
  * The period during which tax withholding on a seller\'s account is calculated.
1651
1201
  */
1652
1202
  interface TaxWithholdingPeriod {
1653
- /**
1654
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1655
- */
1656
- 'StartDate'?: string;
1657
- /**
1658
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1659
- */
1660
- 'EndDate'?: string;
1203
+ /**
1204
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1205
+ */
1206
+ 'StartDate'?: string;
1207
+ /**
1208
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1209
+ */
1210
+ 'EndDate'?: string;
1661
1211
  }
1662
-
1663
- /**
1664
- * Selling Partner API for Finances
1665
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1666
- *
1667
- * The version of the OpenAPI document: v0
1668
- *
1669
- *
1670
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1671
- * https://openapi-generator.tech
1672
- * Do not edit the class manually.
1673
- */
1674
-
1212
+ //#endregion
1213
+ //#region src/api-model/models/tax-withholding-event.d.ts
1675
1214
  /**
1676
1215
  * A tax withholding event on a seller\'s account.
1677
1216
  */
1678
1217
  interface TaxWithholdingEvent {
1679
- /**
1680
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1681
- */
1682
- 'PostedDate'?: string;
1683
- 'BaseAmount'?: Currency;
1684
- 'WithheldAmount'?: Currency;
1685
- 'TaxWithholdingPeriod'?: TaxWithholdingPeriod;
1218
+ /**
1219
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1220
+ */
1221
+ 'PostedDate'?: string;
1222
+ 'BaseAmount'?: Currency;
1223
+ 'WithheldAmount'?: Currency;
1224
+ 'TaxWithholdingPeriod'?: TaxWithholdingPeriod;
1686
1225
  }
1687
-
1688
- /**
1689
- * Selling Partner API for Finances
1690
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1691
- *
1692
- * The version of the OpenAPI document: v0
1693
- *
1694
- *
1695
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1696
- * https://openapi-generator.tech
1697
- * Do not edit the class manually.
1698
- */
1699
-
1226
+ //#endregion
1227
+ //#region src/api-model/models/trial-shipment-event.d.ts
1700
1228
  /**
1701
1229
  * An event related to a trial shipment.
1702
1230
  */
1703
1231
  interface TrialShipmentEvent {
1704
- /**
1705
- * An Amazon-defined identifier for an order.
1706
- */
1707
- 'AmazonOrderId'?: string;
1708
- /**
1709
- * The identifier of the financial event group.
1710
- */
1711
- 'FinancialEventGroupId'?: string;
1712
- /**
1713
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1714
- */
1715
- 'PostedDate'?: string;
1716
- /**
1717
- * The seller SKU of the item. The seller SKU is qualified by the seller\'s seller ID, which is included with every call to the Selling Partner API.
1718
- */
1719
- 'SKU'?: string;
1720
- /**
1721
- * A list of fee component information.
1722
- */
1723
- 'FeeList'?: Array<FeeComponent>;
1232
+ /**
1233
+ * An Amazon-defined identifier for an order.
1234
+ */
1235
+ 'AmazonOrderId'?: string;
1236
+ /**
1237
+ * The identifier of the financial event group.
1238
+ */
1239
+ 'FinancialEventGroupId'?: string;
1240
+ /**
1241
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1242
+ */
1243
+ 'PostedDate'?: string;
1244
+ /**
1245
+ * The seller SKU of the item. The seller SKU is qualified by the seller\'s seller ID, which is included with every call to the Selling Partner API.
1246
+ */
1247
+ 'SKU'?: string;
1248
+ /**
1249
+ * A list of fee component information.
1250
+ */
1251
+ 'FeeList'?: Array<FeeComponent>;
1724
1252
  }
1725
-
1726
- /**
1727
- * Selling Partner API for Finances
1728
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1729
- *
1730
- * The version of the OpenAPI document: v0
1731
- *
1732
- *
1733
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1734
- * https://openapi-generator.tech
1735
- * Do not edit the class manually.
1736
- */
1737
-
1253
+ //#endregion
1254
+ //#region src/api-model/models/value-added-service-charge-event.d.ts
1738
1255
  /**
1739
1256
  * An event related to a value added service charge.
1740
1257
  */
1741
1258
  interface ValueAddedServiceChargeEvent {
1742
- /**
1743
- * The transaction type. For example, \'Other Support Service fees\'
1744
- */
1745
- 'TransactionType'?: string;
1746
- /**
1747
- * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1748
- */
1749
- 'PostedDate'?: string;
1750
- /**
1751
- * A short description of the service charge event.
1752
- */
1753
- 'Description'?: string;
1754
- 'TransactionAmount'?: Currency;
1259
+ /**
1260
+ * The transaction type. For example, \'Other Support Service fees\'
1261
+ */
1262
+ 'TransactionType'?: string;
1263
+ /**
1264
+ * A date in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
1265
+ */
1266
+ 'PostedDate'?: string;
1267
+ /**
1268
+ * A short description of the service charge event.
1269
+ */
1270
+ 'Description'?: string;
1271
+ 'TransactionAmount'?: Currency;
1755
1272
  }
1756
-
1757
- /**
1758
- * Selling Partner API for Finances
1759
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1760
- *
1761
- * The version of the OpenAPI document: v0
1762
- *
1763
- *
1764
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1765
- * https://openapi-generator.tech
1766
- * Do not edit the class manually.
1767
- */
1768
-
1273
+ //#endregion
1274
+ //#region src/api-model/models/financial-events.d.ts
1769
1275
  /**
1770
1276
  * All the information that is related to a financial event.
1771
1277
  */
1772
1278
  interface FinancialEvents {
1773
- /**
1774
- * A list of shipment event information.
1775
- */
1776
- 'ShipmentEventList'?: Array<ShipmentEvent>;
1777
- /**
1778
- * A list of `ShipmentEvent` items.
1779
- */
1780
- 'ShipmentSettleEventList'?: Array<ShipmentEvent>;
1781
- /**
1782
- * A list of shipment event information.
1783
- */
1784
- 'RefundEventList'?: Array<ShipmentEvent>;
1785
- /**
1786
- * A list of shipment event information.
1787
- */
1788
- 'GuaranteeClaimEventList'?: Array<ShipmentEvent>;
1789
- /**
1790
- * A list of EBT refund reimbursement events.
1791
- */
1792
- 'EBTRefundReimbursementOnlyEventList'?: Array<EBTRefundReimbursementOnlyEvent>;
1793
- /**
1794
- * A list of shipment event information.
1795
- */
1796
- 'ChargebackEventList'?: Array<ShipmentEvent>;
1797
- /**
1798
- * A list of events related to the seller\'s Pay with Amazon account.
1799
- */
1800
- 'PayWithAmazonEventList'?: Array<PayWithAmazonEvent>;
1801
- /**
1802
- * A list of `SolutionProviderCreditEvent`.
1803
- */
1804
- 'ServiceProviderCreditEventList'?: Array<SolutionProviderCreditEvent>;
1805
- /**
1806
- * A list of information about `Retrocharge` or `RetrochargeReversal` events.
1807
- */
1808
- 'RetrochargeEventList'?: Array<RetrochargeEvent>;
1809
- /**
1810
- * A list of rental transaction event information.
1811
- */
1812
- 'RentalTransactionEventList'?: Array<RentalTransactionEvent>;
1813
- /**
1814
- * A list of sponsored products payment events.
1815
- */
1816
- 'ProductAdsPaymentEventList'?: Array<ProductAdsPaymentEvent>;
1817
- /**
1818
- * A list of information about service fee events.
1819
- */
1820
- 'ServiceFeeEventList'?: Array<ServiceFeeEvent>;
1821
- /**
1822
- * A list of payment events for deal-related fees.
1823
- */
1824
- 'SellerDealPaymentEventList'?: Array<SellerDealPaymentEvent>;
1825
- /**
1826
- * A list of debt recovery event information.
1827
- */
1828
- 'DebtRecoveryEventList'?: Array<DebtRecoveryEvent>;
1829
- /**
1830
- * A list of loan servicing events.
1831
- */
1832
- 'LoanServicingEventList'?: Array<LoanServicingEvent>;
1833
- /**
1834
- * A list of adjustment event information for the seller\'s account.
1835
- */
1836
- 'AdjustmentEventList'?: Array<AdjustmentEvent>;
1837
- /**
1838
- * A list of `SAFETReimbursementEvent`.
1839
- */
1840
- 'SAFETReimbursementEventList'?: Array<SAFETReimbursementEvent>;
1841
- /**
1842
- * A list of information about fee events for the Early Reviewer Program.
1843
- */
1844
- 'SellerReviewEnrollmentPaymentEventList'?: Array<SellerReviewEnrollmentPaymentEvent>;
1845
- /**
1846
- * A list of FBA inventory liquidation payment events.
1847
- */
1848
- 'FBALiquidationEventList'?: Array<FBALiquidationEvent>;
1849
- /**
1850
- * A list of coupon payment event information.
1851
- */
1852
- 'CouponPaymentEventList'?: Array<CouponPaymentEvent>;
1853
- /**
1854
- * A list of fee events related to Amazon Imaging services.
1855
- */
1856
- 'ImagingServicesFeeEventList'?: Array<ImagingServicesFeeEvent>;
1857
- /**
1858
- * A list of network commingling transaction events.
1859
- */
1860
- 'NetworkComminglingTransactionEventList'?: Array<NetworkComminglingTransactionEvent>;
1861
- /**
1862
- * A list of expense information related to an affordability promotion.
1863
- */
1864
- 'AffordabilityExpenseEventList'?: Array<AffordabilityExpenseEvent>;
1865
- /**
1866
- * A list of expense information related to an affordability promotion.
1867
- */
1868
- 'AffordabilityExpenseReversalEventList'?: Array<AffordabilityExpenseEvent>;
1869
- /**
1870
- * A list of removal shipment event information.
1871
- */
1872
- 'RemovalShipmentEventList'?: Array<RemovalShipmentEvent>;
1873
- /**
1874
- * A comma-delimited list of `RemovalShipmentAdjustment` details for FBA inventory.
1875
- */
1876
- 'RemovalShipmentAdjustmentEventList'?: Array<RemovalShipmentAdjustmentEvent>;
1877
- /**
1878
- * A list of information about trial shipment financial events.
1879
- */
1880
- 'TrialShipmentEventList'?: Array<TrialShipmentEvent>;
1881
- /**
1882
- * A list of `TDSReimbursementEvent` items.
1883
- */
1884
- 'TDSReimbursementEventList'?: Array<TDSReimbursementEvent>;
1885
- /**
1886
- * A list of `AdhocDisbursement` events.
1887
- */
1888
- 'AdhocDisbursementEventList'?: Array<AdhocDisbursementEvent>;
1889
- /**
1890
- * A list of tax withholding events.
1891
- */
1892
- 'TaxWithholdingEventList'?: Array<TaxWithholdingEvent>;
1893
- /**
1894
- * A list of charge refund events.
1895
- */
1896
- 'ChargeRefundEventList'?: Array<ChargeRefundEvent>;
1897
- /**
1898
- * A list of `FailedAdhocDisbursementEvent`.
1899
- */
1900
- 'FailedAdhocDisbursementEventList'?: Array<FailedAdhocDisbursementEvent>;
1901
- /**
1902
- * A list of `ValueAddedServiceCharge` events.
1903
- */
1904
- 'ValueAddedServiceChargeEventList'?: Array<ValueAddedServiceChargeEvent>;
1905
- /**
1906
- * A list of `CapacityReservationBillingEvent` events.
1907
- */
1908
- 'CapacityReservationBillingEventList'?: Array<CapacityReservationBillingEvent>;
1279
+ /**
1280
+ * A list of shipment event information.
1281
+ */
1282
+ 'ShipmentEventList'?: Array<ShipmentEvent>;
1283
+ /**
1284
+ * A list of `ShipmentEvent` items.
1285
+ */
1286
+ 'ShipmentSettleEventList'?: Array<ShipmentEvent>;
1287
+ /**
1288
+ * A list of shipment event information.
1289
+ */
1290
+ 'RefundEventList'?: Array<ShipmentEvent>;
1291
+ /**
1292
+ * A list of shipment event information.
1293
+ */
1294
+ 'GuaranteeClaimEventList'?: Array<ShipmentEvent>;
1295
+ /**
1296
+ * A list of EBT refund reimbursement events.
1297
+ */
1298
+ 'EBTRefundReimbursementOnlyEventList'?: Array<EBTRefundReimbursementOnlyEvent>;
1299
+ /**
1300
+ * A list of shipment event information.
1301
+ */
1302
+ 'ChargebackEventList'?: Array<ShipmentEvent>;
1303
+ /**
1304
+ * A list of events related to the seller\'s Pay with Amazon account.
1305
+ */
1306
+ 'PayWithAmazonEventList'?: Array<PayWithAmazonEvent>;
1307
+ /**
1308
+ * A list of `SolutionProviderCreditEvent`.
1309
+ */
1310
+ 'ServiceProviderCreditEventList'?: Array<SolutionProviderCreditEvent>;
1311
+ /**
1312
+ * A list of information about `Retrocharge` or `RetrochargeReversal` events.
1313
+ */
1314
+ 'RetrochargeEventList'?: Array<RetrochargeEvent>;
1315
+ /**
1316
+ * A list of rental transaction event information.
1317
+ */
1318
+ 'RentalTransactionEventList'?: Array<RentalTransactionEvent>;
1319
+ /**
1320
+ * A list of sponsored products payment events.
1321
+ */
1322
+ 'ProductAdsPaymentEventList'?: Array<ProductAdsPaymentEvent>;
1323
+ /**
1324
+ * A list of information about service fee events.
1325
+ */
1326
+ 'ServiceFeeEventList'?: Array<ServiceFeeEvent>;
1327
+ /**
1328
+ * A list of payment events for deal-related fees.
1329
+ */
1330
+ 'SellerDealPaymentEventList'?: Array<SellerDealPaymentEvent>;
1331
+ /**
1332
+ * A list of debt recovery event information.
1333
+ */
1334
+ 'DebtRecoveryEventList'?: Array<DebtRecoveryEvent>;
1335
+ /**
1336
+ * A list of loan servicing events.
1337
+ */
1338
+ 'LoanServicingEventList'?: Array<LoanServicingEvent>;
1339
+ /**
1340
+ * A list of adjustment event information for the seller\'s account.
1341
+ */
1342
+ 'AdjustmentEventList'?: Array<AdjustmentEvent>;
1343
+ /**
1344
+ * A list of `SAFETReimbursementEvent`.
1345
+ */
1346
+ 'SAFETReimbursementEventList'?: Array<SAFETReimbursementEvent>;
1347
+ /**
1348
+ * A list of information about fee events for the Early Reviewer Program.
1349
+ */
1350
+ 'SellerReviewEnrollmentPaymentEventList'?: Array<SellerReviewEnrollmentPaymentEvent>;
1351
+ /**
1352
+ * A list of FBA inventory liquidation payment events.
1353
+ */
1354
+ 'FBALiquidationEventList'?: Array<FBALiquidationEvent>;
1355
+ /**
1356
+ * A list of coupon payment event information.
1357
+ */
1358
+ 'CouponPaymentEventList'?: Array<CouponPaymentEvent>;
1359
+ /**
1360
+ * A list of fee events related to Amazon Imaging services.
1361
+ */
1362
+ 'ImagingServicesFeeEventList'?: Array<ImagingServicesFeeEvent>;
1363
+ /**
1364
+ * A list of network commingling transaction events.
1365
+ */
1366
+ 'NetworkComminglingTransactionEventList'?: Array<NetworkComminglingTransactionEvent>;
1367
+ /**
1368
+ * A list of expense information related to an affordability promotion.
1369
+ */
1370
+ 'AffordabilityExpenseEventList'?: Array<AffordabilityExpenseEvent>;
1371
+ /**
1372
+ * A list of expense information related to an affordability promotion.
1373
+ */
1374
+ 'AffordabilityExpenseReversalEventList'?: Array<AffordabilityExpenseEvent>;
1375
+ /**
1376
+ * A list of removal shipment event information.
1377
+ */
1378
+ 'RemovalShipmentEventList'?: Array<RemovalShipmentEvent>;
1379
+ /**
1380
+ * A comma-delimited list of `RemovalShipmentAdjustment` details for FBA inventory.
1381
+ */
1382
+ 'RemovalShipmentAdjustmentEventList'?: Array<RemovalShipmentAdjustmentEvent>;
1383
+ /**
1384
+ * A list of information about trial shipment financial events.
1385
+ */
1386
+ 'TrialShipmentEventList'?: Array<TrialShipmentEvent>;
1387
+ /**
1388
+ * A list of `TDSReimbursementEvent` items.
1389
+ */
1390
+ 'TDSReimbursementEventList'?: Array<TDSReimbursementEvent>;
1391
+ /**
1392
+ * A list of `AdhocDisbursement` events.
1393
+ */
1394
+ 'AdhocDisbursementEventList'?: Array<AdhocDisbursementEvent>;
1395
+ /**
1396
+ * A list of tax withholding events.
1397
+ */
1398
+ 'TaxWithholdingEventList'?: Array<TaxWithholdingEvent>;
1399
+ /**
1400
+ * A list of charge refund events.
1401
+ */
1402
+ 'ChargeRefundEventList'?: Array<ChargeRefundEvent>;
1403
+ /**
1404
+ * A list of `FailedAdhocDisbursementEvent`.
1405
+ */
1406
+ 'FailedAdhocDisbursementEventList'?: Array<FailedAdhocDisbursementEvent>;
1407
+ /**
1408
+ * A list of `ValueAddedServiceCharge` events.
1409
+ */
1410
+ 'ValueAddedServiceChargeEventList'?: Array<ValueAddedServiceChargeEvent>;
1411
+ /**
1412
+ * A list of `CapacityReservationBillingEvent` events.
1413
+ */
1414
+ 'CapacityReservationBillingEventList'?: Array<CapacityReservationBillingEvent>;
1909
1415
  }
1910
-
1911
- /**
1912
- * Selling Partner API for Finances
1913
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1914
- *
1915
- * The version of the OpenAPI document: v0
1916
- *
1917
- *
1918
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1919
- * https://openapi-generator.tech
1920
- * Do not edit the class manually.
1921
- */
1922
-
1416
+ //#endregion
1417
+ //#region src/api-model/models/list-financial-event-groups-payload.d.ts
1923
1418
  /**
1924
1419
  * The payload for the `listFinancialEventGroups` operation.
1925
1420
  */
1926
1421
  interface ListFinancialEventGroupsPayload {
1927
- /**
1928
- * When present and not empty, pass this string token in the next request to return the next response page.
1929
- */
1930
- 'NextToken'?: string;
1931
- /**
1932
- * A list of financial event group information.
1933
- */
1934
- 'FinancialEventGroupList'?: Array<FinancialEventGroup>;
1422
+ /**
1423
+ * When present and not empty, pass this string token in the next request to return the next response page.
1424
+ */
1425
+ 'NextToken'?: string;
1426
+ /**
1427
+ * A list of financial event group information.
1428
+ */
1429
+ 'FinancialEventGroupList'?: Array<FinancialEventGroup>;
1935
1430
  }
1936
-
1937
- /**
1938
- * Selling Partner API for Finances
1939
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1940
- *
1941
- * The version of the OpenAPI document: v0
1942
- *
1943
- *
1944
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1945
- * https://openapi-generator.tech
1946
- * Do not edit the class manually.
1947
- */
1948
-
1431
+ //#endregion
1432
+ //#region src/api-model/models/list-financial-event-groups-response.d.ts
1949
1433
  /**
1950
1434
  * The response schema for the `listFinancialEventGroups` operation.
1951
1435
  */
1952
1436
  interface ListFinancialEventGroupsResponse {
1953
- 'payload'?: ListFinancialEventGroupsPayload;
1954
- /**
1955
- * A list of error responses returned when a request is unsuccessful.
1956
- */
1957
- 'errors'?: Array<Error>;
1437
+ 'payload'?: ListFinancialEventGroupsPayload;
1438
+ /**
1439
+ * A list of error responses returned when a request is unsuccessful.
1440
+ */
1441
+ 'errors'?: Array<Error>;
1958
1442
  }
1959
-
1960
- /**
1961
- * Selling Partner API for Finances
1962
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1963
- *
1964
- * The version of the OpenAPI document: v0
1965
- *
1966
- *
1967
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1968
- * https://openapi-generator.tech
1969
- * Do not edit the class manually.
1970
- */
1971
-
1443
+ //#endregion
1444
+ //#region src/api-model/models/list-financial-events-payload.d.ts
1972
1445
  /**
1973
1446
  * The payload for the `listFinancialEvents` operation.
1974
1447
  */
1975
1448
  interface ListFinancialEventsPayload {
1976
- /**
1977
- * When present and not empty, pass this string token in the next request to return the next response page.
1978
- */
1979
- 'NextToken'?: string;
1980
- 'FinancialEvents'?: FinancialEvents;
1449
+ /**
1450
+ * When present and not empty, pass this string token in the next request to return the next response page.
1451
+ */
1452
+ 'NextToken'?: string;
1453
+ 'FinancialEvents'?: FinancialEvents;
1981
1454
  }
1982
-
1983
- /**
1984
- * Selling Partner API for Finances
1985
- * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
1986
- *
1987
- * The version of the OpenAPI document: v0
1988
- *
1989
- *
1990
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1991
- * https://openapi-generator.tech
1992
- * Do not edit the class manually.
1993
- */
1994
-
1455
+ //#endregion
1456
+ //#region src/api-model/models/list-financial-events-response.d.ts
1995
1457
  /**
1996
1458
  * The response schema for the `listFinancialEvents` operation.
1997
1459
  */
1998
1460
  interface ListFinancialEventsResponse {
1999
- 'payload'?: ListFinancialEventsPayload;
2000
- /**
2001
- * A list of error responses returned when a request is unsuccessful.
2002
- */
2003
- 'errors'?: Array<Error>;
1461
+ 'payload'?: ListFinancialEventsPayload;
1462
+ /**
1463
+ * A list of error responses returned when a request is unsuccessful.
1464
+ */
1465
+ 'errors'?: Array<Error>;
2004
1466
  }
2005
-
1467
+ //#endregion
1468
+ //#region src/api-model/models/model-error.d.ts
2006
1469
  /**
2007
1470
  * Selling Partner API for Finances
2008
1471
  * The Selling Partner API for Finances provides financial information that is relevant to a seller\'s business. You can obtain financial events for a given order, financial event group, or date range without having to wait until a statement period closes. You can also obtain financial event groups for a given date range.
@@ -2018,264 +1481,267 @@ interface ListFinancialEventsResponse {
2018
1481
  * Error response returned when the request is unsuccessful.
2019
1482
  */
2020
1483
  interface ModelError {
2021
- /**
2022
- * An error code that identifies the type of error that occurred.
2023
- */
2024
- 'code': string;
2025
- /**
2026
- * A message that describes the error condition in a human-readable form.
2027
- */
2028
- 'message': string;
2029
- /**
2030
- * Additional details that can help the caller understand or fix the issue.
2031
- */
2032
- 'details'?: string;
1484
+ /**
1485
+ * An error code that identifies the type of error that occurred.
1486
+ */
1487
+ 'code': string;
1488
+ /**
1489
+ * A message that describes the error condition in a human-readable form.
1490
+ */
1491
+ 'message': string;
1492
+ /**
1493
+ * Additional details that can help the caller understand or fix the issue.
1494
+ */
1495
+ 'details'?: string;
2033
1496
  }
2034
-
1497
+ //#endregion
1498
+ //#region src/api-model/api/finances-api.d.ts
2035
1499
  /**
2036
1500
  * FinancesApi - axios parameter creator
2037
1501
  */
2038
1502
  declare const FinancesApiAxiosParamCreator: (configuration?: Configuration) => {
2039
- /**
2040
- * Returns financial event groups for a given date range. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2041
- * @param {number} [maxResultsPerPage] The maximum number of results per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
2042
- * @param {string} [financialEventGroupStartedBefore] A date that selects financial event groups that opened before (but not at) a specified date and time, in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) format. The date-time must be after &#x60;FinancialEventGroupStartedAfter&#x60; and more than two minutes before the time of request. If &#x60;FinancialEventGroupStartedAfter&#x60; and &#x60;FinancialEventGroupStartedBefore&#x60; are more than 180 days apart, no financial event groups are returned.
2043
- * @param {string} [financialEventGroupStartedAfter] A date that selects financial event groups that opened after (or at) a specified date and time, in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) format. The date-time must be more than two minutes before you submit the request.
2044
- * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
2045
- * @param {*} [options] Override http request option.
2046
- * @throws {RequiredError}
2047
- */
2048
- listFinancialEventGroups: (maxResultsPerPage?: number, financialEventGroupStartedBefore?: string, financialEventGroupStartedAfter?: string, nextToken?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2049
- /**
2050
- * Returns financial events for the specified data range. Orders from the last 48 hours might not be included in financial events. **Note:** in `ListFinancialEvents`, deferred events don\'t show up in responses until they are released. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2051
- * @param {number} [maxResultsPerPage] The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
2052
- * @param {string} [postedAfter] The response includes financial events posted after (or on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be more than two minutes before the time of the request.
2053
- * @param {string} [postedBefore] The response includes financial events posted before (but not on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be later than &#x60;PostedAfter&#x60; and more than two minutes before the request was submitted. If &#x60;PostedAfter&#x60; and &#x60;PostedBefore&#x60; are more than 180 days apart, the response is empty. If you include the &#x60;PostedBefore&#x60; parameter in your request, you must also specify the &#x60;PostedAfter&#x60; parameter. **Default:** Two minutes before the time of the request.
2054
- * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
2055
- * @param {*} [options] Override http request option.
2056
- * @throws {RequiredError}
2057
- */
2058
- listFinancialEvents: (maxResultsPerPage?: number, postedAfter?: string, postedBefore?: string, nextToken?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2059
- /**
2060
- * Returns all financial events for the specified financial event group. Orders from the last 48 hours might not be included in financial events. **Note:** This operation only retrieves a group\'s data for the past two years. A request for data spanning more than two years produces an empty response. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2061
- * @param {string} eventGroupId The identifier of the financial event group to which the events belong.
2062
- * @param {number} [maxResultsPerPage] The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
2063
- * @param {string} [postedAfter] The response includes financial events posted after (or on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be more than two minutes before the time of the request.
2064
- * @param {string} [postedBefore] The response includes financial events posted before (but not on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be later than &#x60;PostedAfter&#x60; and more than two minutes before the request was submitted. If &#x60;PostedAfter&#x60; and &#x60;PostedBefore&#x60; are more than 180 days apart, the response is empty. If you include the &#x60;PostedBefore&#x60; parameter in your request, you must also specify the &#x60;PostedAfter&#x60; parameter. **Default:** Two minutes before the time of the request.
2065
- * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
2066
- * @param {*} [options] Override http request option.
2067
- * @throws {RequiredError}
2068
- */
2069
- listFinancialEventsByGroupId: (eventGroupId: string, maxResultsPerPage?: number, postedAfter?: string, postedBefore?: string, nextToken?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2070
- /**
2071
- * Returns all financial events for the specified order. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2072
- * @param {string} orderId An Amazon-defined order identifier, in 3-7-7 format.
2073
- * @param {number} [maxResultsPerPage] The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
2074
- * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
2075
- * @param {*} [options] Override http request option.
2076
- * @throws {RequiredError}
2077
- */
2078
- listFinancialEventsByOrderId: (orderId: string, maxResultsPerPage?: number, nextToken?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1503
+ /**
1504
+ * Returns financial event groups for a given date range. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1505
+ * @param {number} [maxResultsPerPage] The maximum number of results per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
1506
+ * @param {string} [financialEventGroupStartedBefore] A date that selects financial event groups that opened before (but not at) a specified date and time, in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) format. The date-time must be after &#x60;FinancialEventGroupStartedAfter&#x60; and more than two minutes before the time of request. If &#x60;FinancialEventGroupStartedAfter&#x60; and &#x60;FinancialEventGroupStartedBefore&#x60; are more than 180 days apart, no financial event groups are returned.
1507
+ * @param {string} [financialEventGroupStartedAfter] A date that selects financial event groups that opened after (or at) a specified date and time, in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) format. The date-time must be more than two minutes before you submit the request.
1508
+ * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
1509
+ * @param {*} [options] Override http request option.
1510
+ * @throws {RequiredError}
1511
+ */
1512
+ listFinancialEventGroups: (maxResultsPerPage?: number, financialEventGroupStartedBefore?: string, financialEventGroupStartedAfter?: string, nextToken?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1513
+ /**
1514
+ * Returns financial events for the specified data range. Orders from the last 48 hours might not be included in financial events. **Note:** in `ListFinancialEvents`, deferred events don\'t show up in responses until they are released. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1515
+ * @param {number} [maxResultsPerPage] The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
1516
+ * @param {string} [postedAfter] The response includes financial events posted after (or on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be more than two minutes before the time of the request.
1517
+ * @param {string} [postedBefore] The response includes financial events posted before (but not on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be later than &#x60;PostedAfter&#x60; and more than two minutes before the request was submitted. If &#x60;PostedAfter&#x60; and &#x60;PostedBefore&#x60; are more than 180 days apart, the response is empty. If you include the &#x60;PostedBefore&#x60; parameter in your request, you must also specify the &#x60;PostedAfter&#x60; parameter. **Default:** Two minutes before the time of the request.
1518
+ * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
1519
+ * @param {*} [options] Override http request option.
1520
+ * @throws {RequiredError}
1521
+ */
1522
+ listFinancialEvents: (maxResultsPerPage?: number, postedAfter?: string, postedBefore?: string, nextToken?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1523
+ /**
1524
+ * Returns all financial events for the specified financial event group. Orders from the last 48 hours might not be included in financial events. **Note:** This operation only retrieves a group\'s data for the past two years. A request for data spanning more than two years produces an empty response. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1525
+ * @param {string} eventGroupId The identifier of the financial event group to which the events belong.
1526
+ * @param {number} [maxResultsPerPage] The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
1527
+ * @param {string} [postedAfter] The response includes financial events posted after (or on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be more than two minutes before the time of the request.
1528
+ * @param {string} [postedBefore] The response includes financial events posted before (but not on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be later than &#x60;PostedAfter&#x60; and more than two minutes before the request was submitted. If &#x60;PostedAfter&#x60; and &#x60;PostedBefore&#x60; are more than 180 days apart, the response is empty. If you include the &#x60;PostedBefore&#x60; parameter in your request, you must also specify the &#x60;PostedAfter&#x60; parameter. **Default:** Two minutes before the time of the request.
1529
+ * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
1530
+ * @param {*} [options] Override http request option.
1531
+ * @throws {RequiredError}
1532
+ */
1533
+ listFinancialEventsByGroupId: (eventGroupId: string, maxResultsPerPage?: number, postedAfter?: string, postedBefore?: string, nextToken?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1534
+ /**
1535
+ * Returns all financial events for the specified order. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1536
+ * @param {string} orderId An Amazon-defined order identifier, in 3-7-7 format.
1537
+ * @param {number} [maxResultsPerPage] The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
1538
+ * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
1539
+ * @param {*} [options] Override http request option.
1540
+ * @throws {RequiredError}
1541
+ */
1542
+ listFinancialEventsByOrderId: (orderId: string, maxResultsPerPage?: number, nextToken?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2079
1543
  };
2080
1544
  /**
2081
1545
  * FinancesApi - functional programming interface
2082
1546
  */
2083
1547
  declare const FinancesApiFp: (configuration?: Configuration) => {
2084
- /**
2085
- * Returns financial event groups for a given date range. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2086
- * @param {number} [maxResultsPerPage] The maximum number of results per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
2087
- * @param {string} [financialEventGroupStartedBefore] A date that selects financial event groups that opened before (but not at) a specified date and time, in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) format. The date-time must be after &#x60;FinancialEventGroupStartedAfter&#x60; and more than two minutes before the time of request. If &#x60;FinancialEventGroupStartedAfter&#x60; and &#x60;FinancialEventGroupStartedBefore&#x60; are more than 180 days apart, no financial event groups are returned.
2088
- * @param {string} [financialEventGroupStartedAfter] A date that selects financial event groups that opened after (or at) a specified date and time, in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) format. The date-time must be more than two minutes before you submit the request.
2089
- * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
2090
- * @param {*} [options] Override http request option.
2091
- * @throws {RequiredError}
2092
- */
2093
- listFinancialEventGroups(maxResultsPerPage?: number, financialEventGroupStartedBefore?: string, financialEventGroupStartedAfter?: string, nextToken?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListFinancialEventGroupsResponse>>;
2094
- /**
2095
- * Returns financial events for the specified data range. Orders from the last 48 hours might not be included in financial events. **Note:** in `ListFinancialEvents`, deferred events don\'t show up in responses until they are released. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2096
- * @param {number} [maxResultsPerPage] The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
2097
- * @param {string} [postedAfter] The response includes financial events posted after (or on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be more than two minutes before the time of the request.
2098
- * @param {string} [postedBefore] The response includes financial events posted before (but not on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be later than &#x60;PostedAfter&#x60; and more than two minutes before the request was submitted. If &#x60;PostedAfter&#x60; and &#x60;PostedBefore&#x60; are more than 180 days apart, the response is empty. If you include the &#x60;PostedBefore&#x60; parameter in your request, you must also specify the &#x60;PostedAfter&#x60; parameter. **Default:** Two minutes before the time of the request.
2099
- * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
2100
- * @param {*} [options] Override http request option.
2101
- * @throws {RequiredError}
2102
- */
2103
- listFinancialEvents(maxResultsPerPage?: number, postedAfter?: string, postedBefore?: string, nextToken?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListFinancialEventsResponse>>;
2104
- /**
2105
- * Returns all financial events for the specified financial event group. Orders from the last 48 hours might not be included in financial events. **Note:** This operation only retrieves a group\'s data for the past two years. A request for data spanning more than two years produces an empty response. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2106
- * @param {string} eventGroupId The identifier of the financial event group to which the events belong.
2107
- * @param {number} [maxResultsPerPage] The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
2108
- * @param {string} [postedAfter] The response includes financial events posted after (or on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be more than two minutes before the time of the request.
2109
- * @param {string} [postedBefore] The response includes financial events posted before (but not on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be later than &#x60;PostedAfter&#x60; and more than two minutes before the request was submitted. If &#x60;PostedAfter&#x60; and &#x60;PostedBefore&#x60; are more than 180 days apart, the response is empty. If you include the &#x60;PostedBefore&#x60; parameter in your request, you must also specify the &#x60;PostedAfter&#x60; parameter. **Default:** Two minutes before the time of the request.
2110
- * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
2111
- * @param {*} [options] Override http request option.
2112
- * @throws {RequiredError}
2113
- */
2114
- listFinancialEventsByGroupId(eventGroupId: string, maxResultsPerPage?: number, postedAfter?: string, postedBefore?: string, nextToken?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListFinancialEventsResponse>>;
2115
- /**
2116
- * Returns all financial events for the specified order. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2117
- * @param {string} orderId An Amazon-defined order identifier, in 3-7-7 format.
2118
- * @param {number} [maxResultsPerPage] The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
2119
- * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
2120
- * @param {*} [options] Override http request option.
2121
- * @throws {RequiredError}
2122
- */
2123
- listFinancialEventsByOrderId(orderId: string, maxResultsPerPage?: number, nextToken?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListFinancialEventsResponse>>;
1548
+ /**
1549
+ * Returns financial event groups for a given date range. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1550
+ * @param {number} [maxResultsPerPage] The maximum number of results per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
1551
+ * @param {string} [financialEventGroupStartedBefore] A date that selects financial event groups that opened before (but not at) a specified date and time, in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) format. The date-time must be after &#x60;FinancialEventGroupStartedAfter&#x60; and more than two minutes before the time of request. If &#x60;FinancialEventGroupStartedAfter&#x60; and &#x60;FinancialEventGroupStartedBefore&#x60; are more than 180 days apart, no financial event groups are returned.
1552
+ * @param {string} [financialEventGroupStartedAfter] A date that selects financial event groups that opened after (or at) a specified date and time, in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) format. The date-time must be more than two minutes before you submit the request.
1553
+ * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
1554
+ * @param {*} [options] Override http request option.
1555
+ * @throws {RequiredError}
1556
+ */
1557
+ listFinancialEventGroups(maxResultsPerPage?: number, financialEventGroupStartedBefore?: string, financialEventGroupStartedAfter?: string, nextToken?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListFinancialEventGroupsResponse>>;
1558
+ /**
1559
+ * Returns financial events for the specified data range. Orders from the last 48 hours might not be included in financial events. **Note:** in `ListFinancialEvents`, deferred events don\'t show up in responses until they are released. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1560
+ * @param {number} [maxResultsPerPage] The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
1561
+ * @param {string} [postedAfter] The response includes financial events posted after (or on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be more than two minutes before the time of the request.
1562
+ * @param {string} [postedBefore] The response includes financial events posted before (but not on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be later than &#x60;PostedAfter&#x60; and more than two minutes before the request was submitted. If &#x60;PostedAfter&#x60; and &#x60;PostedBefore&#x60; are more than 180 days apart, the response is empty. If you include the &#x60;PostedBefore&#x60; parameter in your request, you must also specify the &#x60;PostedAfter&#x60; parameter. **Default:** Two minutes before the time of the request.
1563
+ * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
1564
+ * @param {*} [options] Override http request option.
1565
+ * @throws {RequiredError}
1566
+ */
1567
+ listFinancialEvents(maxResultsPerPage?: number, postedAfter?: string, postedBefore?: string, nextToken?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListFinancialEventsResponse>>;
1568
+ /**
1569
+ * Returns all financial events for the specified financial event group. Orders from the last 48 hours might not be included in financial events. **Note:** This operation only retrieves a group\'s data for the past two years. A request for data spanning more than two years produces an empty response. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1570
+ * @param {string} eventGroupId The identifier of the financial event group to which the events belong.
1571
+ * @param {number} [maxResultsPerPage] The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
1572
+ * @param {string} [postedAfter] The response includes financial events posted after (or on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be more than two minutes before the time of the request.
1573
+ * @param {string} [postedBefore] The response includes financial events posted before (but not on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be later than &#x60;PostedAfter&#x60; and more than two minutes before the request was submitted. If &#x60;PostedAfter&#x60; and &#x60;PostedBefore&#x60; are more than 180 days apart, the response is empty. If you include the &#x60;PostedBefore&#x60; parameter in your request, you must also specify the &#x60;PostedAfter&#x60; parameter. **Default:** Two minutes before the time of the request.
1574
+ * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
1575
+ * @param {*} [options] Override http request option.
1576
+ * @throws {RequiredError}
1577
+ */
1578
+ listFinancialEventsByGroupId(eventGroupId: string, maxResultsPerPage?: number, postedAfter?: string, postedBefore?: string, nextToken?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListFinancialEventsResponse>>;
1579
+ /**
1580
+ * Returns all financial events for the specified order. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1581
+ * @param {string} orderId An Amazon-defined order identifier, in 3-7-7 format.
1582
+ * @param {number} [maxResultsPerPage] The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
1583
+ * @param {string} [nextToken] The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
1584
+ * @param {*} [options] Override http request option.
1585
+ * @throws {RequiredError}
1586
+ */
1587
+ listFinancialEventsByOrderId(orderId: string, maxResultsPerPage?: number, nextToken?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListFinancialEventsResponse>>;
2124
1588
  };
2125
1589
  /**
2126
1590
  * FinancesApi - factory interface
2127
1591
  */
2128
1592
  declare const FinancesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2129
- /**
2130
- * Returns financial event groups for a given date range. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2131
- * @param {FinancesApiListFinancialEventGroupsRequest} requestParameters Request parameters.
2132
- * @param {*} [options] Override http request option.
2133
- * @throws {RequiredError}
2134
- */
2135
- listFinancialEventGroups(requestParameters?: FinancesApiListFinancialEventGroupsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListFinancialEventGroupsResponse>;
2136
- /**
2137
- * Returns financial events for the specified data range. Orders from the last 48 hours might not be included in financial events. **Note:** in `ListFinancialEvents`, deferred events don\'t show up in responses until they are released. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2138
- * @param {FinancesApiListFinancialEventsRequest} requestParameters Request parameters.
2139
- * @param {*} [options] Override http request option.
2140
- * @throws {RequiredError}
2141
- */
2142
- listFinancialEvents(requestParameters?: FinancesApiListFinancialEventsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListFinancialEventsResponse>;
2143
- /**
2144
- * Returns all financial events for the specified financial event group. Orders from the last 48 hours might not be included in financial events. **Note:** This operation only retrieves a group\'s data for the past two years. A request for data spanning more than two years produces an empty response. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2145
- * @param {FinancesApiListFinancialEventsByGroupIdRequest} requestParameters Request parameters.
2146
- * @param {*} [options] Override http request option.
2147
- * @throws {RequiredError}
2148
- */
2149
- listFinancialEventsByGroupId(requestParameters: FinancesApiListFinancialEventsByGroupIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListFinancialEventsResponse>;
2150
- /**
2151
- * Returns all financial events for the specified order. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2152
- * @param {FinancesApiListFinancialEventsByOrderIdRequest} requestParameters Request parameters.
2153
- * @param {*} [options] Override http request option.
2154
- * @throws {RequiredError}
2155
- */
2156
- listFinancialEventsByOrderId(requestParameters: FinancesApiListFinancialEventsByOrderIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListFinancialEventsResponse>;
1593
+ /**
1594
+ * Returns financial event groups for a given date range. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1595
+ * @param {FinancesApiListFinancialEventGroupsRequest} requestParameters Request parameters.
1596
+ * @param {*} [options] Override http request option.
1597
+ * @throws {RequiredError}
1598
+ */
1599
+ listFinancialEventGroups(requestParameters?: FinancesApiListFinancialEventGroupsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListFinancialEventGroupsResponse>;
1600
+ /**
1601
+ * Returns financial events for the specified data range. Orders from the last 48 hours might not be included in financial events. **Note:** in `ListFinancialEvents`, deferred events don\'t show up in responses until they are released. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1602
+ * @param {FinancesApiListFinancialEventsRequest} requestParameters Request parameters.
1603
+ * @param {*} [options] Override http request option.
1604
+ * @throws {RequiredError}
1605
+ */
1606
+ listFinancialEvents(requestParameters?: FinancesApiListFinancialEventsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListFinancialEventsResponse>;
1607
+ /**
1608
+ * Returns all financial events for the specified financial event group. Orders from the last 48 hours might not be included in financial events. **Note:** This operation only retrieves a group\'s data for the past two years. A request for data spanning more than two years produces an empty response. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1609
+ * @param {FinancesApiListFinancialEventsByGroupIdRequest} requestParameters Request parameters.
1610
+ * @param {*} [options] Override http request option.
1611
+ * @throws {RequiredError}
1612
+ */
1613
+ listFinancialEventsByGroupId(requestParameters: FinancesApiListFinancialEventsByGroupIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListFinancialEventsResponse>;
1614
+ /**
1615
+ * Returns all financial events for the specified order. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1616
+ * @param {FinancesApiListFinancialEventsByOrderIdRequest} requestParameters Request parameters.
1617
+ * @param {*} [options] Override http request option.
1618
+ * @throws {RequiredError}
1619
+ */
1620
+ listFinancialEventsByOrderId(requestParameters: FinancesApiListFinancialEventsByOrderIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListFinancialEventsResponse>;
2157
1621
  };
2158
1622
  /**
2159
1623
  * Request parameters for listFinancialEventGroups operation in FinancesApi.
2160
1624
  */
2161
1625
  interface FinancesApiListFinancialEventGroupsRequest {
2162
- /**
2163
- * The maximum number of results per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
2164
- */
2165
- readonly maxResultsPerPage?: number;
2166
- /**
2167
- * A date that selects financial event groups that opened before (but not at) a specified date and time, in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) format. The date-time must be after &#x60;FinancialEventGroupStartedAfter&#x60; and more than two minutes before the time of request. If &#x60;FinancialEventGroupStartedAfter&#x60; and &#x60;FinancialEventGroupStartedBefore&#x60; are more than 180 days apart, no financial event groups are returned.
2168
- */
2169
- readonly financialEventGroupStartedBefore?: string;
2170
- /**
2171
- * A date that selects financial event groups that opened after (or at) a specified date and time, in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) format. The date-time must be more than two minutes before you submit the request.
2172
- */
2173
- readonly financialEventGroupStartedAfter?: string;
2174
- /**
2175
- * The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
2176
- */
2177
- readonly nextToken?: string;
1626
+ /**
1627
+ * The maximum number of results per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
1628
+ */
1629
+ readonly maxResultsPerPage?: number;
1630
+ /**
1631
+ * A date that selects financial event groups that opened before (but not at) a specified date and time, in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) format. The date-time must be after &#x60;FinancialEventGroupStartedAfter&#x60; and more than two minutes before the time of request. If &#x60;FinancialEventGroupStartedAfter&#x60; and &#x60;FinancialEventGroupStartedBefore&#x60; are more than 180 days apart, no financial event groups are returned.
1632
+ */
1633
+ readonly financialEventGroupStartedBefore?: string;
1634
+ /**
1635
+ * A date that selects financial event groups that opened after (or at) a specified date and time, in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) format. The date-time must be more than two minutes before you submit the request.
1636
+ */
1637
+ readonly financialEventGroupStartedAfter?: string;
1638
+ /**
1639
+ * The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
1640
+ */
1641
+ readonly nextToken?: string;
2178
1642
  }
2179
1643
  /**
2180
1644
  * Request parameters for listFinancialEvents operation in FinancesApi.
2181
1645
  */
2182
1646
  interface FinancesApiListFinancialEventsRequest {
2183
- /**
2184
- * The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
2185
- */
2186
- readonly maxResultsPerPage?: number;
2187
- /**
2188
- * The response includes financial events posted after (or on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be more than two minutes before the time of the request.
2189
- */
2190
- readonly postedAfter?: string;
2191
- /**
2192
- * The response includes financial events posted before (but not on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be later than &#x60;PostedAfter&#x60; and more than two minutes before the request was submitted. If &#x60;PostedAfter&#x60; and &#x60;PostedBefore&#x60; are more than 180 days apart, the response is empty. If you include the &#x60;PostedBefore&#x60; parameter in your request, you must also specify the &#x60;PostedAfter&#x60; parameter. **Default:** Two minutes before the time of the request.
2193
- */
2194
- readonly postedBefore?: string;
2195
- /**
2196
- * The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
2197
- */
2198
- readonly nextToken?: string;
1647
+ /**
1648
+ * The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
1649
+ */
1650
+ readonly maxResultsPerPage?: number;
1651
+ /**
1652
+ * The response includes financial events posted after (or on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be more than two minutes before the time of the request.
1653
+ */
1654
+ readonly postedAfter?: string;
1655
+ /**
1656
+ * The response includes financial events posted before (but not on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be later than &#x60;PostedAfter&#x60; and more than two minutes before the request was submitted. If &#x60;PostedAfter&#x60; and &#x60;PostedBefore&#x60; are more than 180 days apart, the response is empty. If you include the &#x60;PostedBefore&#x60; parameter in your request, you must also specify the &#x60;PostedAfter&#x60; parameter. **Default:** Two minutes before the time of the request.
1657
+ */
1658
+ readonly postedBefore?: string;
1659
+ /**
1660
+ * The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
1661
+ */
1662
+ readonly nextToken?: string;
2199
1663
  }
2200
1664
  /**
2201
1665
  * Request parameters for listFinancialEventsByGroupId operation in FinancesApi.
2202
1666
  */
2203
1667
  interface FinancesApiListFinancialEventsByGroupIdRequest {
2204
- /**
2205
- * The identifier of the financial event group to which the events belong.
2206
- */
2207
- readonly eventGroupId: string;
2208
- /**
2209
- * The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
2210
- */
2211
- readonly maxResultsPerPage?: number;
2212
- /**
2213
- * The response includes financial events posted after (or on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be more than two minutes before the time of the request.
2214
- */
2215
- readonly postedAfter?: string;
2216
- /**
2217
- * The response includes financial events posted before (but not on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be later than &#x60;PostedAfter&#x60; and more than two minutes before the request was submitted. If &#x60;PostedAfter&#x60; and &#x60;PostedBefore&#x60; are more than 180 days apart, the response is empty. If you include the &#x60;PostedBefore&#x60; parameter in your request, you must also specify the &#x60;PostedAfter&#x60; parameter. **Default:** Two minutes before the time of the request.
2218
- */
2219
- readonly postedBefore?: string;
2220
- /**
2221
- * The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
2222
- */
2223
- readonly nextToken?: string;
1668
+ /**
1669
+ * The identifier of the financial event group to which the events belong.
1670
+ */
1671
+ readonly eventGroupId: string;
1672
+ /**
1673
+ * The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
1674
+ */
1675
+ readonly maxResultsPerPage?: number;
1676
+ /**
1677
+ * The response includes financial events posted after (or on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be more than two minutes before the time of the request.
1678
+ */
1679
+ readonly postedAfter?: string;
1680
+ /**
1681
+ * The response includes financial events posted before (but not on) this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be later than &#x60;PostedAfter&#x60; and more than two minutes before the request was submitted. If &#x60;PostedAfter&#x60; and &#x60;PostedBefore&#x60; are more than 180 days apart, the response is empty. If you include the &#x60;PostedBefore&#x60; parameter in your request, you must also specify the &#x60;PostedAfter&#x60; parameter. **Default:** Two minutes before the time of the request.
1682
+ */
1683
+ readonly postedBefore?: string;
1684
+ /**
1685
+ * The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
1686
+ */
1687
+ readonly nextToken?: string;
2224
1688
  }
2225
1689
  /**
2226
1690
  * Request parameters for listFinancialEventsByOrderId operation in FinancesApi.
2227
1691
  */
2228
1692
  interface FinancesApiListFinancialEventsByOrderIdRequest {
2229
- /**
2230
- * An Amazon-defined order identifier, in 3-7-7 format.
2231
- */
2232
- readonly orderId: string;
2233
- /**
2234
- * The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
2235
- */
2236
- readonly maxResultsPerPage?: number;
2237
- /**
2238
- * The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
2239
- */
2240
- readonly nextToken?: string;
1693
+ /**
1694
+ * An Amazon-defined order identifier, in 3-7-7 format.
1695
+ */
1696
+ readonly orderId: string;
1697
+ /**
1698
+ * The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the response is &#x60;InvalidInput&#x60;.
1699
+ */
1700
+ readonly maxResultsPerPage?: number;
1701
+ /**
1702
+ * The response includes &#x60;nextToken&#x60; when the number of results exceeds the specified &#x60;pageSize&#x60; value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until &#x60;nextToken&#x60; is null. Note that this operation can return empty pages.
1703
+ */
1704
+ readonly nextToken?: string;
2241
1705
  }
2242
1706
  /**
2243
1707
  * FinancesApi - object-oriented interface
2244
1708
  */
2245
1709
  declare class FinancesApi extends BaseAPI {
2246
- /**
2247
- * Returns financial event groups for a given date range. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2248
- * @param {FinancesApiListFinancialEventGroupsRequest} requestParameters Request parameters.
2249
- * @param {*} [options] Override http request option.
2250
- * @throws {RequiredError}
2251
- */
2252
- listFinancialEventGroups(requestParameters?: FinancesApiListFinancialEventGroupsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListFinancialEventGroupsResponse, any, {}>>;
2253
- /**
2254
- * Returns financial events for the specified data range. Orders from the last 48 hours might not be included in financial events. **Note:** in `ListFinancialEvents`, deferred events don\'t show up in responses until they are released. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2255
- * @param {FinancesApiListFinancialEventsRequest} requestParameters Request parameters.
2256
- * @param {*} [options] Override http request option.
2257
- * @throws {RequiredError}
2258
- */
2259
- listFinancialEvents(requestParameters?: FinancesApiListFinancialEventsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListFinancialEventsResponse, any, {}>>;
2260
- /**
2261
- * Returns all financial events for the specified financial event group. Orders from the last 48 hours might not be included in financial events. **Note:** This operation only retrieves a group\'s data for the past two years. A request for data spanning more than two years produces an empty response. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2262
- * @param {FinancesApiListFinancialEventsByGroupIdRequest} requestParameters Request parameters.
2263
- * @param {*} [options] Override http request option.
2264
- * @throws {RequiredError}
2265
- */
2266
- listFinancialEventsByGroupId(requestParameters: FinancesApiListFinancialEventsByGroupIdRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListFinancialEventsResponse, any, {}>>;
2267
- /**
2268
- * Returns all financial events for the specified order. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
2269
- * @param {FinancesApiListFinancialEventsByOrderIdRequest} requestParameters Request parameters.
2270
- * @param {*} [options] Override http request option.
2271
- * @throws {RequiredError}
2272
- */
2273
- listFinancialEventsByOrderId(requestParameters: FinancesApiListFinancialEventsByOrderIdRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListFinancialEventsResponse, any, {}>>;
1710
+ /**
1711
+ * Returns financial event groups for a given date range. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1712
+ * @param {FinancesApiListFinancialEventGroupsRequest} requestParameters Request parameters.
1713
+ * @param {*} [options] Override http request option.
1714
+ * @throws {RequiredError}
1715
+ */
1716
+ listFinancialEventGroups(requestParameters?: FinancesApiListFinancialEventGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListFinancialEventGroupsResponse, any, {}>>;
1717
+ /**
1718
+ * Returns financial events for the specified data range. Orders from the last 48 hours might not be included in financial events. **Note:** in `ListFinancialEvents`, deferred events don\'t show up in responses until they are released. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1719
+ * @param {FinancesApiListFinancialEventsRequest} requestParameters Request parameters.
1720
+ * @param {*} [options] Override http request option.
1721
+ * @throws {RequiredError}
1722
+ */
1723
+ listFinancialEvents(requestParameters?: FinancesApiListFinancialEventsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListFinancialEventsResponse, any, {}>>;
1724
+ /**
1725
+ * Returns all financial events for the specified financial event group. Orders from the last 48 hours might not be included in financial events. **Note:** This operation only retrieves a group\'s data for the past two years. A request for data spanning more than two years produces an empty response. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1726
+ * @param {FinancesApiListFinancialEventsByGroupIdRequest} requestParameters Request parameters.
1727
+ * @param {*} [options] Override http request option.
1728
+ * @throws {RequiredError}
1729
+ */
1730
+ listFinancialEventsByGroupId(requestParameters: FinancesApiListFinancialEventsByGroupIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListFinancialEventsResponse, any, {}>>;
1731
+ /**
1732
+ * Returns all financial events for the specified order. Orders from the last 48 hours might not be included in financial events. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput can have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits).
1733
+ * @param {FinancesApiListFinancialEventsByOrderIdRequest} requestParameters Request parameters.
1734
+ * @param {*} [options] Override http request option.
1735
+ * @throws {RequiredError}
1736
+ */
1737
+ listFinancialEventsByOrderId(requestParameters: FinancesApiListFinancialEventsByOrderIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListFinancialEventsResponse, any, {}>>;
2274
1738
  }
2275
-
1739
+ //#endregion
1740
+ //#region src/client.d.ts
2276
1741
  declare const clientRateLimits: RateLimit[];
2277
1742
  declare class FinancesApiClient extends FinancesApi {
2278
- constructor(configuration: ClientConfiguration);
1743
+ constructor(configuration: ClientConfiguration);
2279
1744
  }
2280
-
2281
- export { type AdhocDisbursementEvent, type AdjustmentEvent, type AdjustmentItem, type AffordabilityExpenseEvent, type CapacityReservationBillingEvent, type ChargeComponent, type ChargeInstrument, type ChargeRefundEvent, type ChargeRefundTransaction, type CouponPaymentEvent, type Currency, type DebtRecoveryEvent, type DebtRecoveryItem, type DirectPayment, type EBTRefundReimbursementOnlyEvent, type FBALiquidationEvent, type FailedAdhocDisbursementEvent, type FeeComponent, FinancesApi, FinancesApiAxiosParamCreator, FinancesApiClient, FinancesApiFactory, FinancesApiFp, type FinancesApiListFinancialEventGroupsRequest, type FinancesApiListFinancialEventsByGroupIdRequest, type FinancesApiListFinancialEventsByOrderIdRequest, type FinancesApiListFinancialEventsRequest, type FinancialEventGroup, type FinancialEvents, type ImagingServicesFeeEvent, type ListFinancialEventGroupsPayload, type ListFinancialEventGroupsResponse, type ListFinancialEventsPayload, type ListFinancialEventsResponse, type LoanServicingEvent, type ModelError, type NetworkComminglingTransactionEvent, type PayWithAmazonEvent, type ProductAdsPaymentEvent, type Promotion, type RemovalShipmentAdjustmentEvent, type RemovalShipmentEvent, type RemovalShipmentItem, type RemovalShipmentItemAdjustment, type RentalTransactionEvent, type RetrochargeEvent, type SAFETReimbursementEvent, type SAFETReimbursementItem, type SellerDealPaymentEvent, type SellerReviewEnrollmentPaymentEvent, type ServiceFeeEvent, type ShipmentEvent, type ShipmentItem, type SolutionProviderCreditEvent, type TDSReimbursementEvent, type TaxWithheldComponent, type TaxWithholdingEvent, type TaxWithholdingPeriod, type TrialShipmentEvent, type ValueAddedServiceChargeEvent, clientRateLimits };
1745
+ //#endregion
1746
+ export { type AdhocDisbursementEvent, type AdjustmentEvent, type AdjustmentItem, type AffordabilityExpenseEvent, type CapacityReservationBillingEvent, type ChargeComponent, type ChargeInstrument, type ChargeRefundEvent, type ChargeRefundTransaction, type CouponPaymentEvent, type Currency, type DebtRecoveryEvent, type DebtRecoveryItem, type DirectPayment, type EBTRefundReimbursementOnlyEvent, type FBALiquidationEvent, type FailedAdhocDisbursementEvent, type FeeComponent, FinancesApi, FinancesApiAxiosParamCreator, FinancesApiClient, FinancesApiFactory, FinancesApiFp, FinancesApiListFinancialEventGroupsRequest, FinancesApiListFinancialEventsByGroupIdRequest, FinancesApiListFinancialEventsByOrderIdRequest, FinancesApiListFinancialEventsRequest, type FinancialEventGroup, type FinancialEvents, type ImagingServicesFeeEvent, type ListFinancialEventGroupsPayload, type ListFinancialEventGroupsResponse, type ListFinancialEventsPayload, type ListFinancialEventsResponse, type LoanServicingEvent, type ModelError, type NetworkComminglingTransactionEvent, type PayWithAmazonEvent, type ProductAdsPaymentEvent, type Promotion, type RemovalShipmentAdjustmentEvent, type RemovalShipmentEvent, type RemovalShipmentItem, type RemovalShipmentItemAdjustment, type RentalTransactionEvent, type RetrochargeEvent, type SAFETReimbursementEvent, type SAFETReimbursementItem, type SellerDealPaymentEvent, type SellerReviewEnrollmentPaymentEvent, type ServiceFeeEvent, type ShipmentEvent, type ShipmentItem, type SolutionProviderCreditEvent, type TDSReimbursementEvent, type TaxWithheldComponent, type TaxWithholdingEvent, type TaxWithholdingPeriod, type TrialShipmentEvent, type ValueAddedServiceChargeEvent, clientRateLimits };
1747
+ //# sourceMappingURL=index.d.cts.map