@aws-sdk/client-taxsettings 3.1063.0 → 3.1065.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/README.md +1 -12
- package/dist-cjs/index.js +20 -0
- package/dist-cjs/schemas/schemas_0.js +54 -20
- package/dist-es/models/enums.js +17 -0
- package/dist-es/schemas/schemas_0.js +51 -17
- package/dist-types/TaxSettings.d.ts +1 -12
- package/dist-types/TaxSettingsClient.d.ts +1 -12
- package/dist-types/commands/BatchDeleteTaxRegistrationCommand.d.ts +2 -7
- package/dist-types/commands/BatchGetTaxExemptionsCommand.d.ts +2 -4
- package/dist-types/commands/BatchPutTaxRegistrationCommand.d.ts +21 -211
- package/dist-types/commands/DeleteSupplementalTaxRegistrationCommand.d.ts +2 -5
- package/dist-types/commands/DeleteTaxRegistrationCommand.d.ts +2 -6
- package/dist-types/commands/GetTaxExemptionTypesCommand.d.ts +2 -4
- package/dist-types/commands/GetTaxInheritanceCommand.d.ts +2 -4
- package/dist-types/commands/GetTaxRegistrationCommand.d.ts +20 -5
- package/dist-types/commands/GetTaxRegistrationDocumentCommand.d.ts +2 -4
- package/dist-types/commands/ListSupplementalTaxRegistrationsCommand.d.ts +4 -7
- package/dist-types/commands/ListTaxExemptionsCommand.d.ts +1 -2
- package/dist-types/commands/ListTaxRegistrationsCommand.d.ts +21 -8
- package/dist-types/commands/PutSupplementalTaxRegistrationCommand.d.ts +4 -7
- package/dist-types/commands/PutTaxExemptionCommand.d.ts +5 -10
- package/dist-types/commands/PutTaxInheritanceCommand.d.ts +2 -4
- package/dist-types/commands/PutTaxRegistrationCommand.d.ts +21 -210
- package/dist-types/index.d.ts +1 -12
- package/dist-types/models/enums.d.ts +41 -0
- package/dist-types/models/errors.d.ts +4 -8
- package/dist-types/models/models_0.d.ts +267 -445
- package/dist-types/schemas/schemas_0.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +22 -0
- package/dist-types/ts3.4/models/models_0.d.ts +29 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +5 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AddressRoleType, EntityExemptionAccountStatus, HeritageStatus, IndonesiaTaxRegistrationNumberType, Industries, IsraelCustomerType, IsraelDealerType, MalaysiaServiceTaxCode, PersonType, RegistrationType, SaudiArabiaTaxRegistrationNumberType, Sector, SupplementalTaxRegistrationType, TaxRegistrationNumberType, TaxRegistrationStatus, TaxRegistrationType, UkraineTrnType, UzbekistanTaxRegistrationNumberType } from "./enums";
|
|
1
|
+
import type { AddressRoleType, ChileDocumentType, CustomerType, EntityExemptionAccountStatus, HeritageStatus, IndonesiaTaxRegistrationNumberType, Industries, IsraelCustomerType, IsraelDealerType, MalaysiaServiceTaxCode, PersonType, PolandTaxRegistrationNumberType, RegistrationType, SaudiArabiaTaxRegistrationNumberType, Sector, SupplementalTaxRegistrationType, TaxRegistrationNumberType, TaxRegistrationStatus, TaxRegistrationType, UkraineTrnType, UzbekistanTaxRegistrationNumberType } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p> The details of the address associated with the TRN information. </p>
|
|
4
4
|
* @public
|
|
@@ -8,26 +8,19 @@ export interface Address {
|
|
|
8
8
|
* <p>The first line of the address. </p>
|
|
9
9
|
* @public
|
|
10
10
|
*/
|
|
11
|
-
addressLine1
|
|
11
|
+
addressLine1?: string | undefined;
|
|
12
12
|
/**
|
|
13
13
|
* <p>The second line of the address, if applicable. </p>
|
|
14
14
|
* @public
|
|
15
15
|
*/
|
|
16
16
|
addressLine2?: string | undefined;
|
|
17
17
|
/**
|
|
18
|
-
* <p> The third line of the address, if applicable. Currently, the Tax Settings API accepts the
|
|
19
|
-
* <code>addressLine3</code> parameter only for Saudi Arabia. When you specify a TRN in Saudi
|
|
20
|
-
* Arabia, you must enter the <code>addressLine3</code> and specify the building number for the
|
|
21
|
-
* address. For example, you might enter <code>1234</code>.</p>
|
|
18
|
+
* <p> The third line of the address, if applicable. Currently, the Tax Settings API accepts the <code>addressLine3</code> parameter only for Saudi Arabia. When you specify a TRN in Saudi Arabia, you must enter the <code>addressLine3</code> and specify the building number for the address. For example, you might enter <code>1234</code>.</p>
|
|
22
19
|
* @public
|
|
23
20
|
*/
|
|
24
21
|
addressLine3?: string | undefined;
|
|
25
22
|
/**
|
|
26
|
-
* <p>The district or county the address is located. </p>
|
|
27
|
-
* <note>
|
|
28
|
-
* <p>For addresses in Brazil, this parameter uses the name of the neighborhood. When you set
|
|
29
|
-
* a TRN in Brazil, use <code>districtOrCounty</code> for the neighborhood name.</p>
|
|
30
|
-
* </note>
|
|
23
|
+
* <p>The district or county the address is located. </p> <note> <p>For addresses in Brazil, this parameter uses the name of the neighborhood. When you set a TRN in Brazil, use <code>districtOrCounty</code> for the neighborhood name.</p> </note>
|
|
31
24
|
* @public
|
|
32
25
|
*/
|
|
33
26
|
districtOrCounty?: string | undefined;
|
|
@@ -35,10 +28,9 @@ export interface Address {
|
|
|
35
28
|
* <p>The city that the address is in. </p>
|
|
36
29
|
* @public
|
|
37
30
|
*/
|
|
38
|
-
city
|
|
31
|
+
city?: string | undefined;
|
|
39
32
|
/**
|
|
40
|
-
* <p>The state, region, or province that the address is located. This field is only required for Canada, India, United Arab Emirates, Romania, and Brazil (CPF). It is optional for all other countries.</p>
|
|
41
|
-
* <p>If this is required for tax settings, use the same name as shown on the <b>Tax Settings</b> page.</p>
|
|
33
|
+
* <p>The state, region, or province that the address is located. This field is only required for Canada, India, United Arab Emirates, Romania, and Brazil (CPF). It is optional for all other countries.</p> <p>If this is required for tax settings, use the same name as shown on the <b>Tax Settings</b> page.</p>
|
|
42
34
|
* @public
|
|
43
35
|
*/
|
|
44
36
|
stateOrRegion?: string | undefined;
|
|
@@ -54,14 +46,12 @@ export interface Address {
|
|
|
54
46
|
countryCode: string | undefined;
|
|
55
47
|
}
|
|
56
48
|
/**
|
|
57
|
-
* <p>The jurisdiction details of the TRN information of the customers. This doesn't contain
|
|
58
|
-
* full legal address, and contains only country code and state/region/province. </p>
|
|
49
|
+
* <p>The jurisdiction details of the TRN information of the customers. This doesn't contain full legal address, and contains only country code and state/region/province. </p>
|
|
59
50
|
* @public
|
|
60
51
|
*/
|
|
61
52
|
export interface Jurisdiction {
|
|
62
53
|
/**
|
|
63
|
-
* <p> The state, region, or province associated with the country of the jurisdiction, if
|
|
64
|
-
* applicable. </p>
|
|
54
|
+
* <p> The state, region, or province associated with the country of the jurisdiction, if applicable. </p>
|
|
65
55
|
* @public
|
|
66
56
|
*/
|
|
67
57
|
stateOrRegion?: string | undefined;
|
|
@@ -72,23 +62,17 @@ export interface Jurisdiction {
|
|
|
72
62
|
countryCode: string | undefined;
|
|
73
63
|
}
|
|
74
64
|
/**
|
|
75
|
-
* <p>
|
|
76
|
-
* The meta data information associated with the account.
|
|
77
|
-
* </p>
|
|
65
|
+
* <p> The meta data information associated with the account. </p>
|
|
78
66
|
* @public
|
|
79
67
|
*/
|
|
80
68
|
export interface AccountMetaData {
|
|
81
69
|
/**
|
|
82
|
-
* <p>
|
|
83
|
-
* The Amazon Web Services accounts name.
|
|
84
|
-
* </p>
|
|
70
|
+
* <p> The Amazon Web Services accounts name. </p>
|
|
85
71
|
* @public
|
|
86
72
|
*/
|
|
87
73
|
accountName?: string | undefined;
|
|
88
74
|
/**
|
|
89
|
-
* <p>
|
|
90
|
-
* Seller information associated with the account.
|
|
91
|
-
* </p>
|
|
75
|
+
* <p> Seller information associated with the account. </p>
|
|
92
76
|
* @public
|
|
93
77
|
*/
|
|
94
78
|
seller?: string | undefined;
|
|
@@ -98,42 +82,48 @@ export interface AccountMetaData {
|
|
|
98
82
|
*/
|
|
99
83
|
address?: Address | undefined;
|
|
100
84
|
/**
|
|
101
|
-
* <p>
|
|
102
|
-
* The type of address associated with the legal profile.
|
|
103
|
-
* </p>
|
|
85
|
+
* <p> The type of address associated with the legal profile. </p>
|
|
104
86
|
* @public
|
|
105
87
|
*/
|
|
106
88
|
addressType?: AddressRoleType | undefined;
|
|
107
89
|
/**
|
|
108
|
-
* <p>
|
|
109
|
-
* Address roles associated with the account containing country code information.
|
|
110
|
-
* </p>
|
|
90
|
+
* <p> Address roles associated with the account containing country code information. </p>
|
|
111
91
|
* @public
|
|
112
92
|
*/
|
|
113
93
|
addressRoleMap?: Partial<Record<AddressRoleType, Jurisdiction>> | undefined;
|
|
114
94
|
}
|
|
115
95
|
/**
|
|
116
|
-
* <p>
|
|
117
|
-
* Tax inheritance information associated with the account.
|
|
118
|
-
* </p>
|
|
96
|
+
* <p> Tax inheritance information associated with the account. </p>
|
|
119
97
|
* @public
|
|
120
98
|
*/
|
|
121
99
|
export interface TaxInheritanceDetails {
|
|
122
100
|
/**
|
|
123
|
-
* <p>
|
|
124
|
-
* Tax inheritance parent account information associated with the account.
|
|
125
|
-
* </p>
|
|
101
|
+
* <p> Tax inheritance parent account information associated with the account. </p>
|
|
126
102
|
* @public
|
|
127
103
|
*/
|
|
128
104
|
parentEntityId?: string | undefined;
|
|
129
105
|
/**
|
|
130
|
-
* <p>
|
|
131
|
-
* Tax inheritance reason information associated with the account.
|
|
132
|
-
* </p>
|
|
106
|
+
* <p> Tax inheritance reason information associated with the account. </p>
|
|
133
107
|
* @public
|
|
134
108
|
*/
|
|
135
109
|
inheritanceObtainedReason?: string | undefined;
|
|
136
110
|
}
|
|
111
|
+
/**
|
|
112
|
+
* <p>Additional tax information associated with your TRN in Belgium.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
export interface BelgiumAdditionalInfo {
|
|
116
|
+
/**
|
|
117
|
+
* <p>The Peppol ID for electronic invoicing in Belgium.</p>
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
peppolId?: string | undefined;
|
|
121
|
+
/**
|
|
122
|
+
* <p>Indicates whether the Mercurius e-invoicing box is enabled for business-to-government (B2G) invoicing in Belgium.</p>
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
isMercuriusBoxEnabled?: boolean | undefined;
|
|
126
|
+
}
|
|
137
127
|
/**
|
|
138
128
|
* <p>Additional tax information associated with your TRN in Brazil.</p>
|
|
139
129
|
* @public
|
|
@@ -145,8 +135,7 @@ export interface BrazilAdditionalInfo {
|
|
|
145
135
|
*/
|
|
146
136
|
ccmCode?: string | undefined;
|
|
147
137
|
/**
|
|
148
|
-
* <p>Legal nature of business, based on your TRN in Brazil. This only applies for a CNPJ tax
|
|
149
|
-
* type.</p>
|
|
138
|
+
* <p>Legal nature of business, based on your TRN in Brazil. This only applies for a CNPJ tax type.</p>
|
|
150
139
|
* @public
|
|
151
140
|
*/
|
|
152
141
|
legalNatureCode?: string | undefined;
|
|
@@ -157,49 +146,42 @@ export interface BrazilAdditionalInfo {
|
|
|
157
146
|
*/
|
|
158
147
|
export interface CanadaAdditionalInfo {
|
|
159
148
|
/**
|
|
160
|
-
* <p> The provincial sales tax ID for your TRN in Canada. This parameter can represent the
|
|
161
|
-
* following: </p>
|
|
162
|
-
* <ul>
|
|
163
|
-
* <li>
|
|
164
|
-
* <p>Provincial sales tax ID number for British Columbia and Saskatchewan provinces</p>
|
|
165
|
-
* </li>
|
|
166
|
-
* <li>
|
|
167
|
-
* <p>Manitoba retail sales tax ID number for Manitoba province</p>
|
|
168
|
-
* </li>
|
|
169
|
-
* <li>
|
|
170
|
-
* <p>Quebec sales tax ID number for Quebec province</p>
|
|
171
|
-
* </li>
|
|
172
|
-
* </ul>
|
|
173
|
-
* <p>The Tax Setting API only accepts this parameter if the TRN is specified for the previous
|
|
174
|
-
* provinces. For other provinces, the Tax Settings API doesn't accept this parameter. </p>
|
|
149
|
+
* <p> The provincial sales tax ID for your TRN in Canada. This parameter can represent the following: </p> <ul> <li> <p>Provincial sales tax ID number for British Columbia and Saskatchewan provinces</p> </li> <li> <p>Manitoba retail sales tax ID number for Manitoba province</p> </li> <li> <p>Quebec sales tax ID number for Quebec province</p> </li> </ul> <p>The Tax Setting API only accepts this parameter if the TRN is specified for the previous provinces. For other provinces, the Tax Settings API doesn't accept this parameter. </p>
|
|
175
150
|
* @public
|
|
176
151
|
*/
|
|
177
152
|
provincialSalesTaxId?: string | undefined;
|
|
178
153
|
/**
|
|
179
|
-
* <p>
|
|
180
|
-
* The Quebec Sales Tax ID number. Leave blank if you do not have a Quebec Sales Tax ID number.
|
|
181
|
-
* </p>
|
|
154
|
+
* <p> The Quebec Sales Tax ID number. Leave blank if you do not have a Quebec Sales Tax ID number. </p>
|
|
182
155
|
* @public
|
|
183
156
|
*/
|
|
184
157
|
canadaQuebecSalesTaxNumber?: string | undefined;
|
|
185
158
|
/**
|
|
186
|
-
* <p>
|
|
187
|
-
* Manitoba Retail Sales Tax ID number. Customers purchasing Amazon Web Services services for resale in Manitoba must provide a valid Retail Sales Tax ID number for Manitoba. Leave this blank if you do not have a Retail Sales Tax ID number in Manitoba or are not purchasing Amazon Web Services services for resale.
|
|
188
|
-
* </p>
|
|
159
|
+
* <p> Manitoba Retail Sales Tax ID number. Customers purchasing Amazon Web Services services for resale in Manitoba must provide a valid Retail Sales Tax ID number for Manitoba. Leave this blank if you do not have a Retail Sales Tax ID number in Manitoba or are not purchasing Amazon Web Services services for resale. </p>
|
|
189
160
|
* @public
|
|
190
161
|
*/
|
|
191
162
|
canadaRetailSalesTaxNumber?: string | undefined;
|
|
192
163
|
/**
|
|
193
|
-
* <p> The value for this parameter must be <code>true</code> if the
|
|
194
|
-
* <code>provincialSalesTaxId</code> value is provided for a TRN in British Columbia,
|
|
195
|
-
* Saskatchewan, or Manitoba provinces. </p>
|
|
196
|
-
* <p>To claim a provincial sales tax (PST) and retail sales tax (RST) reseller exemption, you
|
|
197
|
-
* must confirm that purchases from this account were made for resale. Otherwise, remove the PST
|
|
198
|
-
* or RST number from the <code>provincialSalesTaxId</code> parameter from your request.</p>
|
|
164
|
+
* <p> The value for this parameter must be <code>true</code> if the <code>provincialSalesTaxId</code> value is provided for a TRN in British Columbia, Saskatchewan, or Manitoba provinces. </p> <p>To claim a provincial sales tax (PST) and retail sales tax (RST) reseller exemption, you must confirm that purchases from this account were made for resale. Otherwise, remove the PST or RST number from the <code>provincialSalesTaxId</code> parameter from your request.</p>
|
|
199
165
|
* @public
|
|
200
166
|
*/
|
|
201
167
|
isResellerAccount?: boolean | undefined;
|
|
202
168
|
}
|
|
169
|
+
/**
|
|
170
|
+
* <p> Additional tax information associated with your TRN in Chile.</p>
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
173
|
+
export interface ChileAdditionalInfo {
|
|
174
|
+
/**
|
|
175
|
+
* <p> The type of tax document. For Chile, this can be <code>Invoice</code> or <code>Receipt</code>.</p>
|
|
176
|
+
* @public
|
|
177
|
+
*/
|
|
178
|
+
documentType?: ChileDocumentType | undefined;
|
|
179
|
+
/**
|
|
180
|
+
* <p> The business activity of the taxpayer in Chile.</p>
|
|
181
|
+
* @public
|
|
182
|
+
*/
|
|
183
|
+
businessActivity?: string | undefined;
|
|
184
|
+
}
|
|
203
185
|
/**
|
|
204
186
|
* <p>Additional tax information to specify for a TRN in Egypt.</p>
|
|
205
187
|
* @public
|
|
@@ -222,30 +204,35 @@ export interface EgyptAdditionalInfo {
|
|
|
222
204
|
*/
|
|
223
205
|
export interface EstoniaAdditionalInfo {
|
|
224
206
|
/**
|
|
225
|
-
* <p> Registry commercial code (RCC) for your TRN in Estonia. This value is an eight-numeric
|
|
226
|
-
* string, such as <code>12345678</code>.</p>
|
|
207
|
+
* <p> Registry commercial code (RCC) for your TRN in Estonia. This value is an eight-numeric string, such as <code>12345678</code>.</p>
|
|
227
208
|
* @public
|
|
228
209
|
*/
|
|
229
210
|
registryCommercialCode: string | undefined;
|
|
230
211
|
}
|
|
231
212
|
/**
|
|
232
|
-
* <p>
|
|
233
|
-
*
|
|
234
|
-
|
|
213
|
+
* <p>Additional tax information associated with your TRN in France.</p>
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
export interface FranceAdditionalInfo {
|
|
217
|
+
/**
|
|
218
|
+
* <p>The SIREN number for the company in France. Must be a 9-digit number.</p>
|
|
219
|
+
* @public
|
|
220
|
+
*/
|
|
221
|
+
sirenNumber: string | undefined;
|
|
222
|
+
}
|
|
223
|
+
/**
|
|
224
|
+
* <p> Additional tax information associated with your TRN in Georgia. </p>
|
|
235
225
|
* @public
|
|
236
226
|
*/
|
|
237
227
|
export interface GeorgiaAdditionalInfo {
|
|
238
228
|
/**
|
|
239
|
-
* <p>
|
|
240
|
-
* The legal person or physical person assigned to this TRN in Georgia.
|
|
241
|
-
* </p>
|
|
229
|
+
* <p> The legal person or physical person assigned to this TRN in Georgia. </p>
|
|
242
230
|
* @public
|
|
243
231
|
*/
|
|
244
232
|
personType: PersonType | undefined;
|
|
245
233
|
}
|
|
246
234
|
/**
|
|
247
|
-
* <p>Additional tax information to specify for a TRN in Greece.
|
|
248
|
-
* </p>
|
|
235
|
+
* <p>Additional tax information to specify for a TRN in Greece. </p>
|
|
249
236
|
* @public
|
|
250
237
|
*/
|
|
251
238
|
export interface GreeceAdditionalInfo {
|
|
@@ -256,16 +243,12 @@ export interface GreeceAdditionalInfo {
|
|
|
256
243
|
contractingAuthorityCode?: string | undefined;
|
|
257
244
|
}
|
|
258
245
|
/**
|
|
259
|
-
* <p>
|
|
260
|
-
* Additional tax information in India.
|
|
261
|
-
* </p>
|
|
246
|
+
* <p> Additional tax information in India. </p>
|
|
262
247
|
* @public
|
|
263
248
|
*/
|
|
264
249
|
export interface IndiaAdditionalInfo {
|
|
265
250
|
/**
|
|
266
|
-
* <p>
|
|
267
|
-
* India pan information associated with the account.
|
|
268
|
-
* </p>
|
|
251
|
+
* <p> India pan information associated with the account. </p>
|
|
269
252
|
* @public
|
|
270
253
|
*/
|
|
271
254
|
pan?: string | undefined;
|
|
@@ -297,54 +280,46 @@ export interface IndonesiaAdditionalInfo {
|
|
|
297
280
|
*/
|
|
298
281
|
export interface IsraelAdditionalInfo {
|
|
299
282
|
/**
|
|
300
|
-
* <p> Dealer type for your TRN in Israel. If you're not a local authorized dealer with an
|
|
301
|
-
* Israeli VAT ID, specify your tax identification number so that Amazon Web Services can send you
|
|
302
|
-
* a compliant tax invoice.</p>
|
|
283
|
+
* <p> Dealer type for your TRN in Israel. If you're not a local authorized dealer with an Israeli VAT ID, specify your tax identification number so that Amazon Web Services can send you a compliant tax invoice.</p>
|
|
303
284
|
* @public
|
|
304
285
|
*/
|
|
305
286
|
dealerType: IsraelDealerType | undefined;
|
|
306
287
|
/**
|
|
307
|
-
* <p> Customer type for your TRN in Israel. The value can be <code>Business</code> or
|
|
308
|
-
* <code>Individual</code>. Use <code>Business</code>for entities such as not-for-profit and
|
|
309
|
-
* financial institutions.</p>
|
|
288
|
+
* <p> Customer type for your TRN in Israel. The value can be <code>Business</code> or <code>Individual</code>. Use <code>Business</code>for entities such as not-for-profit and financial institutions.</p>
|
|
310
289
|
* @public
|
|
311
290
|
*/
|
|
312
291
|
customerType: IsraelCustomerType | undefined;
|
|
313
292
|
}
|
|
314
293
|
/**
|
|
315
|
-
* <p>
|
|
316
|
-
* Additional tax information associated with your TRN in Italy.
|
|
317
|
-
* </p>
|
|
294
|
+
* <p> Additional tax information associated with your TRN in Italy. </p>
|
|
318
295
|
* @public
|
|
319
296
|
*/
|
|
320
297
|
export interface ItalyAdditionalInfo {
|
|
321
298
|
/**
|
|
322
|
-
* <p>
|
|
323
|
-
* Additional tax information to specify for a TRN in Italy. Use CodiceDestinatario to receive your invoices via web service (API) or FTP.
|
|
324
|
-
* </p>
|
|
299
|
+
* <p> Additional tax information to specify for a TRN in Italy. Use CodiceDestinatario to receive your invoices via web service (API) or FTP. </p>
|
|
325
300
|
* @public
|
|
326
301
|
*/
|
|
327
302
|
sdiAccountId?: string | undefined;
|
|
328
303
|
/**
|
|
329
|
-
* <p>
|
|
330
|
-
* The tender procedure identification code.
|
|
331
|
-
* </p>
|
|
304
|
+
* <p> The tender procedure identification code. </p>
|
|
332
305
|
* @public
|
|
333
306
|
*/
|
|
334
307
|
cigNumber?: string | undefined;
|
|
335
308
|
/**
|
|
336
|
-
* <p>
|
|
337
|
-
* Additional tax information to specify for a TRN in Italy. This is managed by the Interministerial Committee for Economic Planning (CIPE) which characterizes every public investment project (Individual Project Code).
|
|
338
|
-
* </p>
|
|
309
|
+
* <p> Additional tax information to specify for a TRN in Italy. This is managed by the Interministerial Committee for Economic Planning (CIPE) which characterizes every public investment project (Individual Project Code). </p>
|
|
339
310
|
* @public
|
|
340
311
|
*/
|
|
341
312
|
cupNumber?: string | undefined;
|
|
342
313
|
/**
|
|
343
|
-
* <p>List of service tax codes for your TRN in Italy. You can use your customer tax code as part of a VAT Group.
|
|
344
|
-
* </p>
|
|
314
|
+
* <p>List of service tax codes for your TRN in Italy. You can use your customer tax code as part of a VAT Group. </p>
|
|
345
315
|
* @public
|
|
346
316
|
*/
|
|
347
317
|
taxCode?: string | undefined;
|
|
318
|
+
/**
|
|
319
|
+
* <p>The customer type for tax registration in Italy. Valid values are <code>Business</code> or <code>Individual</code>.</p>
|
|
320
|
+
* @public
|
|
321
|
+
*/
|
|
322
|
+
customerType?: CustomerType | undefined;
|
|
348
323
|
}
|
|
349
324
|
/**
|
|
350
325
|
* <p>Additional tax information associated with your TRN in Kenya.</p>
|
|
@@ -368,70 +343,66 @@ export interface MalaysiaAdditionalInfo {
|
|
|
368
343
|
*/
|
|
369
344
|
serviceTaxCodes?: MalaysiaServiceTaxCode[] | undefined;
|
|
370
345
|
/**
|
|
371
|
-
* <p>The tax information number in Malaysia.
|
|
372
|
-
* </p>
|
|
373
|
-
* <p>For individual, you can specify the <code>taxInformationNumber</code> in <code>MalaysiaAdditionalInfo</code> with NRIC type, and a valid MyKad or NRIC number. For business resellers, you must specify a <code>businessRegistrationNumber</code> and <code>taxInformationNumber</code> in <code>MalaysiaAdditionalInfo</code> with a sales and service tax (SST) type and a valid SST number.
|
|
374
|
-
* </p>
|
|
375
|
-
* <p>For business resellers with service codes, you must specify <code>businessRegistrationNumber</code>, <code>taxInformationNumber</code>, and distinct <code>serviceTaxCodes</code> in <code>MalaysiaAdditionalInfo</code> with a SST type and valid sales and service tax (SST) number. By using this API operation, Amazon Web Services registers your self-declaration that you’re an authorized business reseller registered with the Royal Malaysia Customs Department (RMCD), and have a valid SST number.</p>
|
|
346
|
+
* <p>The tax information number in Malaysia. </p> <p>For individual, you can specify the <code>taxInformationNumber</code> in <code>MalaysiaAdditionalInfo</code> with NRIC type, and a valid MyKad or NRIC number. For business resellers, you must specify a <code>businessRegistrationNumber</code> and <code>taxInformationNumber</code> in <code>MalaysiaAdditionalInfo</code> with a sales and service tax (SST) type and a valid SST number. </p> <p>For business resellers with service codes, you must specify <code>businessRegistrationNumber</code>, <code>taxInformationNumber</code>, and distinct <code>serviceTaxCodes</code> in <code>MalaysiaAdditionalInfo</code> with a SST type and valid sales and service tax (SST) number. By using this API operation, Amazon Web Services registers your self-declaration that you’re an authorized business reseller registered with the Royal Malaysia Customs Department (RMCD), and have a valid SST number.</p>
|
|
376
347
|
* @public
|
|
377
348
|
*/
|
|
378
349
|
taxInformationNumber?: string | undefined;
|
|
379
350
|
/**
|
|
380
|
-
* <p>The tax registration number (TRN) in Malaysia. </p>
|
|
381
|
-
* <p>For individual, you can specify the <code>taxInformationNumber</code> in <code>MalaysiaAdditionalInfo</code> with NRIC type, and a valid MyKad or NRIC number. For business, you must specify a <code>businessRegistrationNumber</code> in <code>MalaysiaAdditionalInfo</code> with a TIN type and tax identification number. For business resellers, you must specify a <code>businessRegistrationNumber</code> and <code>taxInformationNumber</code> in <code>MalaysiaAdditionalInfo</code> with a sales and service tax (SST) type and a valid SST number.
|
|
382
|
-
* </p>
|
|
383
|
-
* <p>For business resellers with service codes, you must specify <code>businessRegistrationNumber</code>, <code>taxInformationNumber</code>, and distinct <code>serviceTaxCodes</code> in <code>MalaysiaAdditionalInfo</code> with a SST type and valid sales and service tax (SST) number. By using this API operation, Amazon Web Services registers your self-declaration that you’re an authorized business reseller registered with the Royal Malaysia Customs Department (RMCD), and have a valid SST number.</p>
|
|
351
|
+
* <p>The tax registration number (TRN) in Malaysia. </p> <p>For individual, you can specify the <code>taxInformationNumber</code> in <code>MalaysiaAdditionalInfo</code> with NRIC type, and a valid MyKad or NRIC number. For business, you must specify a <code>businessRegistrationNumber</code> in <code>MalaysiaAdditionalInfo</code> with a TIN type and tax identification number. For business resellers, you must specify a <code>businessRegistrationNumber</code> and <code>taxInformationNumber</code> in <code>MalaysiaAdditionalInfo</code> with a sales and service tax (SST) type and a valid SST number. </p> <p>For business resellers with service codes, you must specify <code>businessRegistrationNumber</code>, <code>taxInformationNumber</code>, and distinct <code>serviceTaxCodes</code> in <code>MalaysiaAdditionalInfo</code> with a SST type and valid sales and service tax (SST) number. By using this API operation, Amazon Web Services registers your self-declaration that you’re an authorized business reseller registered with the Royal Malaysia Customs Department (RMCD), and have a valid SST number.</p>
|
|
384
352
|
* @public
|
|
385
353
|
*/
|
|
386
354
|
businessRegistrationNumber?: string | undefined;
|
|
387
355
|
}
|
|
388
356
|
/**
|
|
389
|
-
* <p>
|
|
390
|
-
*
|
|
391
|
-
|
|
357
|
+
* <p>Additional tax information associated with your TRN in the Philippines.</p>
|
|
358
|
+
* @public
|
|
359
|
+
*/
|
|
360
|
+
export interface PhilippinesAdditionalInfo {
|
|
361
|
+
/**
|
|
362
|
+
* <p>Indicates whether the account is VAT-registered with the Philippines Bureau of Internal Revenue (BIR).</p>
|
|
363
|
+
* @public
|
|
364
|
+
*/
|
|
365
|
+
isVatRegistered?: boolean | undefined;
|
|
366
|
+
}
|
|
367
|
+
/**
|
|
368
|
+
* <p> Additional tax information associated with your TRN in Poland. </p>
|
|
392
369
|
* @public
|
|
393
370
|
*/
|
|
394
371
|
export interface PolandAdditionalInfo {
|
|
395
372
|
/**
|
|
396
|
-
* <p>
|
|
397
|
-
* The individual tax registration number (NIP). Individual NIP is valid for other taxes excluding VAT purposes.
|
|
398
|
-
* </p>
|
|
373
|
+
* <p> The individual tax registration number (NIP). Individual NIP is valid for other taxes excluding VAT purposes. </p>
|
|
399
374
|
* @public
|
|
400
375
|
*/
|
|
401
376
|
individualRegistrationNumber?: string | undefined;
|
|
402
377
|
/**
|
|
403
|
-
* <p>
|
|
404
|
-
* True if your business is a member of a VAT group with a NIP active for VAT purposes. Otherwise, this is false.
|
|
405
|
-
* </p>
|
|
378
|
+
* <p> True if your business is a member of a VAT group with a NIP active for VAT purposes. Otherwise, this is false. </p>
|
|
406
379
|
* @public
|
|
407
380
|
*/
|
|
408
381
|
isGroupVatEnabled?: boolean | undefined;
|
|
382
|
+
/**
|
|
383
|
+
* <p>The tax registration number type. Valid values are <code>EUTaxRegistrationNumber</code>, <code>LocalTaxRegistrationNumber</code>, or <code>LocalRegistrationNumber</code>.</p>
|
|
384
|
+
* @public
|
|
385
|
+
*/
|
|
386
|
+
taxRegistrationNumberType?: PolandTaxRegistrationNumberType | undefined;
|
|
409
387
|
}
|
|
410
388
|
/**
|
|
411
|
-
* <p>Additional tax information to specify for a TRN in Romania.
|
|
412
|
-
* </p>
|
|
389
|
+
* <p>Additional tax information to specify for a TRN in Romania. </p>
|
|
413
390
|
* @public
|
|
414
391
|
*/
|
|
415
392
|
export interface RomaniaAdditionalInfo {
|
|
416
393
|
/**
|
|
417
|
-
* <p>
|
|
418
|
-
* The tax registration number type. The value can be <code>TaxRegistrationNumber</code> or <code>LocalRegistrationNumber</code>.
|
|
419
|
-
* </p>
|
|
394
|
+
* <p> The tax registration number type. The value can be <code>TaxRegistrationNumber</code> or <code>LocalRegistrationNumber</code>. </p>
|
|
420
395
|
* @public
|
|
421
396
|
*/
|
|
422
397
|
taxRegistrationNumberType: TaxRegistrationNumberType | undefined;
|
|
423
398
|
}
|
|
424
399
|
/**
|
|
425
|
-
* <p>
|
|
426
|
-
* Additional tax information associated with your TRN in Saudi Arabia.
|
|
427
|
-
* </p>
|
|
400
|
+
* <p> Additional tax information associated with your TRN in Saudi Arabia. </p>
|
|
428
401
|
* @public
|
|
429
402
|
*/
|
|
430
403
|
export interface SaudiArabiaAdditionalInfo {
|
|
431
404
|
/**
|
|
432
|
-
* <p>
|
|
433
|
-
* The tax registration number type.
|
|
434
|
-
* </p>
|
|
405
|
+
* <p> The tax registration number type. </p>
|
|
435
406
|
* @public
|
|
436
407
|
*/
|
|
437
408
|
taxRegistrationNumberType?: SaudiArabiaTaxRegistrationNumberType | undefined;
|
|
@@ -484,53 +455,39 @@ export interface TurkeyAdditionalInfo {
|
|
|
484
455
|
*/
|
|
485
456
|
kepEmailId?: string | undefined;
|
|
486
457
|
/**
|
|
487
|
-
* <p>
|
|
488
|
-
* Secondary tax ID (“harcama birimi VKN”si”). If one isn't provided, we will use your VKN as the secondary ID.
|
|
489
|
-
* </p>
|
|
458
|
+
* <p> Secondary tax ID (“harcama birimi VKN”si”). If one isn't provided, we will use your VKN as the secondary ID. </p>
|
|
490
459
|
* @public
|
|
491
460
|
*/
|
|
492
461
|
secondaryTaxId?: string | undefined;
|
|
493
462
|
/**
|
|
494
|
-
* <p>The industry information that tells the Tax Settings API if you're subject to additional
|
|
495
|
-
* withholding taxes. This information required for business-to-business (B2B) customers. This
|
|
496
|
-
* information is conditionally mandatory for B2B customers who are subject to KDV tax.</p>
|
|
463
|
+
* <p>The industry information that tells the Tax Settings API if you're subject to additional withholding taxes. This information required for business-to-business (B2B) customers. This information is conditionally mandatory for B2B customers who are subject to KDV tax.</p>
|
|
497
464
|
* @public
|
|
498
465
|
*/
|
|
499
466
|
industries?: Industries | undefined;
|
|
500
467
|
}
|
|
501
468
|
/**
|
|
502
|
-
* <p>
|
|
503
|
-
* Additional tax information associated with your TRN in Ukraine.
|
|
504
|
-
* </p>
|
|
469
|
+
* <p> Additional tax information associated with your TRN in Ukraine. </p>
|
|
505
470
|
* @public
|
|
506
471
|
*/
|
|
507
472
|
export interface UkraineAdditionalInfo {
|
|
508
473
|
/**
|
|
509
|
-
* <p>
|
|
510
|
-
* The tax registration type.
|
|
511
|
-
* </p>
|
|
474
|
+
* <p> The tax registration type. </p>
|
|
512
475
|
* @public
|
|
513
476
|
*/
|
|
514
477
|
ukraineTrnType: UkraineTrnType | undefined;
|
|
515
478
|
}
|
|
516
479
|
/**
|
|
517
|
-
* <p>
|
|
518
|
-
* Additional tax information to specify for a TRN in Uzbekistan.
|
|
519
|
-
* </p>
|
|
480
|
+
* <p> Additional tax information to specify for a TRN in Uzbekistan. </p>
|
|
520
481
|
* @public
|
|
521
482
|
*/
|
|
522
483
|
export interface UzbekistanAdditionalInfo {
|
|
523
484
|
/**
|
|
524
|
-
* <p>
|
|
525
|
-
* The tax registration number type. The tax registration number type valid values are <code>Business</code> and <code>Individual</code>.
|
|
526
|
-
* </p>
|
|
485
|
+
* <p> The tax registration number type. The tax registration number type valid values are <code>Business</code> and <code>Individual</code>. </p>
|
|
527
486
|
* @public
|
|
528
487
|
*/
|
|
529
488
|
taxRegistrationNumberType?: UzbekistanTaxRegistrationNumberType | undefined;
|
|
530
489
|
/**
|
|
531
|
-
* <p>
|
|
532
|
-
* The unique 12-digit number issued to identify VAT-registered identities in Uzbekistan.
|
|
533
|
-
* </p>
|
|
490
|
+
* <p> The unique 12-digit number issued to identify VAT-registered identities in Uzbekistan. </p>
|
|
534
491
|
* @public
|
|
535
492
|
*/
|
|
536
493
|
vatRegistrationNumber?: string | undefined;
|
|
@@ -562,14 +519,12 @@ export interface VietnamAdditionalInfo {
|
|
|
562
519
|
paymentVoucherNumberDate?: string | undefined;
|
|
563
520
|
}
|
|
564
521
|
/**
|
|
565
|
-
* <p> Additional tax information associated with your TRN. The Tax Settings API returns
|
|
566
|
-
* country-specific information in the response when any additional information is present with
|
|
567
|
-
* your TRN for the following countries.</p>
|
|
522
|
+
* <p> Additional tax information associated with your TRN. The Tax Settings API returns country-specific information in the response when any additional information is present with your TRN for the following countries.</p>
|
|
568
523
|
* @public
|
|
569
524
|
*/
|
|
570
525
|
export interface AdditionalInfoResponse {
|
|
571
526
|
/**
|
|
572
|
-
* <p> Additional tax information associated with your
|
|
527
|
+
* <p> Additional tax information associated with your TRN in Malaysia. </p>
|
|
573
528
|
* @public
|
|
574
529
|
*/
|
|
575
530
|
malaysiaAdditionalInfo?: MalaysiaAdditionalInfo | undefined;
|
|
@@ -579,7 +534,7 @@ export interface AdditionalInfoResponse {
|
|
|
579
534
|
*/
|
|
580
535
|
israelAdditionalInfo?: IsraelAdditionalInfo | undefined;
|
|
581
536
|
/**
|
|
582
|
-
* <p> Additional tax information associated with your
|
|
537
|
+
* <p> Additional tax information associated with your TRN in Estonia. </p>
|
|
583
538
|
* @public
|
|
584
539
|
*/
|
|
585
540
|
estoniaAdditionalInfo?: EstoniaAdditionalInfo | undefined;
|
|
@@ -589,9 +544,7 @@ export interface AdditionalInfoResponse {
|
|
|
589
544
|
*/
|
|
590
545
|
canadaAdditionalInfo?: CanadaAdditionalInfo | undefined;
|
|
591
546
|
/**
|
|
592
|
-
* <p>Additional tax information associated with your TRN in Brazil. The Tax Settings API
|
|
593
|
-
* returns this information in your response when any additional information is present with your
|
|
594
|
-
* TRN in Brazil.</p>
|
|
547
|
+
* <p>Additional tax information associated with your TRN in Brazil. The Tax Settings API returns this information in your response when any additional information is present with your TRN in Brazil.</p>
|
|
595
548
|
* @public
|
|
596
549
|
*/
|
|
597
550
|
brazilAdditionalInfo?: BrazilAdditionalInfo | undefined;
|
|
@@ -616,16 +569,12 @@ export interface AdditionalInfoResponse {
|
|
|
616
569
|
*/
|
|
617
570
|
turkeyAdditionalInfo?: TurkeyAdditionalInfo | undefined;
|
|
618
571
|
/**
|
|
619
|
-
* <p>
|
|
620
|
-
* Additional tax information associated with your TRN in Georgia.
|
|
621
|
-
* </p>
|
|
572
|
+
* <p> Additional tax information associated with your TRN in Georgia. </p>
|
|
622
573
|
* @public
|
|
623
574
|
*/
|
|
624
575
|
georgiaAdditionalInfo?: GeorgiaAdditionalInfo | undefined;
|
|
625
576
|
/**
|
|
626
|
-
* <p>
|
|
627
|
-
* Additional tax information associated with your TRN in Italy.
|
|
628
|
-
* </p>
|
|
577
|
+
* <p> Additional tax information associated with your TRN in Italy. </p>
|
|
629
578
|
* @public
|
|
630
579
|
*/
|
|
631
580
|
italyAdditionalInfo?: ItalyAdditionalInfo | undefined;
|
|
@@ -635,30 +584,22 @@ export interface AdditionalInfoResponse {
|
|
|
635
584
|
*/
|
|
636
585
|
romaniaAdditionalInfo?: RomaniaAdditionalInfo | undefined;
|
|
637
586
|
/**
|
|
638
|
-
* <p>
|
|
639
|
-
* Additional tax information associated with your TRN in Ukraine.
|
|
640
|
-
* </p>
|
|
587
|
+
* <p> Additional tax information associated with your TRN in Ukraine. </p>
|
|
641
588
|
* @public
|
|
642
589
|
*/
|
|
643
590
|
ukraineAdditionalInfo?: UkraineAdditionalInfo | undefined;
|
|
644
591
|
/**
|
|
645
|
-
* <p>
|
|
646
|
-
* Additional tax information associated with your TRN in Poland.
|
|
647
|
-
* </p>
|
|
592
|
+
* <p> Additional tax information associated with your TRN in Poland. </p>
|
|
648
593
|
* @public
|
|
649
594
|
*/
|
|
650
595
|
polandAdditionalInfo?: PolandAdditionalInfo | undefined;
|
|
651
596
|
/**
|
|
652
|
-
* <p>
|
|
653
|
-
* Additional tax information associated with your TRN in Saudi Arabia.
|
|
654
|
-
* </p>
|
|
597
|
+
* <p> Additional tax information associated with your TRN in Saudi Arabia. </p>
|
|
655
598
|
* @public
|
|
656
599
|
*/
|
|
657
600
|
saudiArabiaAdditionalInfo?: SaudiArabiaAdditionalInfo | undefined;
|
|
658
601
|
/**
|
|
659
|
-
* <p>
|
|
660
|
-
* Additional tax information in India.
|
|
661
|
-
* </p>
|
|
602
|
+
* <p> Additional tax information in India. </p>
|
|
662
603
|
* @public
|
|
663
604
|
*/
|
|
664
605
|
indiaAdditionalInfo?: IndiaAdditionalInfo | undefined;
|
|
@@ -668,30 +609,45 @@ export interface AdditionalInfoResponse {
|
|
|
668
609
|
*/
|
|
669
610
|
indonesiaAdditionalInfo?: IndonesiaAdditionalInfo | undefined;
|
|
670
611
|
/**
|
|
671
|
-
* <p>Additional tax information to specify for a TRN in Vietnam.
|
|
672
|
-
* </p>
|
|
612
|
+
* <p>Additional tax information to specify for a TRN in Vietnam. </p>
|
|
673
613
|
* @public
|
|
674
614
|
*/
|
|
675
615
|
vietnamAdditionalInfo?: VietnamAdditionalInfo | undefined;
|
|
676
616
|
/**
|
|
677
|
-
* <p>Additional tax information to specify for a TRN in Egypt.
|
|
678
|
-
* </p>
|
|
617
|
+
* <p>Additional tax information to specify for a TRN in Egypt. </p>
|
|
679
618
|
* @public
|
|
680
619
|
*/
|
|
681
620
|
egyptAdditionalInfo?: EgyptAdditionalInfo | undefined;
|
|
682
621
|
/**
|
|
683
|
-
* <p>Additional tax information to specify for a TRN in Greece.
|
|
684
|
-
* </p>
|
|
622
|
+
* <p>Additional tax information to specify for a TRN in Greece. </p>
|
|
685
623
|
* @public
|
|
686
624
|
*/
|
|
687
625
|
greeceAdditionalInfo?: GreeceAdditionalInfo | undefined;
|
|
688
626
|
/**
|
|
689
|
-
* <p>
|
|
690
|
-
* Additional tax information associated with your TRN in Uzbekistan.
|
|
691
|
-
* </p>
|
|
627
|
+
* <p> Additional tax information associated with your TRN in Uzbekistan. </p>
|
|
692
628
|
* @public
|
|
693
629
|
*/
|
|
694
630
|
uzbekistanAdditionalInfo?: UzbekistanAdditionalInfo | undefined;
|
|
631
|
+
/**
|
|
632
|
+
* <p>Additional tax information associated with your TRN in the Philippines.</p>
|
|
633
|
+
* @public
|
|
634
|
+
*/
|
|
635
|
+
philippinesAdditionalInfo?: PhilippinesAdditionalInfo | undefined;
|
|
636
|
+
/**
|
|
637
|
+
* <p>Additional tax information associated with your TRN in Belgium.</p>
|
|
638
|
+
* @public
|
|
639
|
+
*/
|
|
640
|
+
belgiumAdditionalInfo?: BelgiumAdditionalInfo | undefined;
|
|
641
|
+
/**
|
|
642
|
+
* <p> Additional tax information associated with your TRN in Chile. </p>
|
|
643
|
+
* @public
|
|
644
|
+
*/
|
|
645
|
+
chileAdditionalInfo?: ChileAdditionalInfo | undefined;
|
|
646
|
+
/**
|
|
647
|
+
* <p>Additional tax information associated with your TRN in France.</p>
|
|
648
|
+
* @public
|
|
649
|
+
*/
|
|
650
|
+
franceAdditionalInfo?: FranceAdditionalInfo | undefined;
|
|
695
651
|
}
|
|
696
652
|
/**
|
|
697
653
|
* <p>The metadata for your tax document.</p>
|
|
@@ -699,10 +655,7 @@ export interface AdditionalInfoResponse {
|
|
|
699
655
|
*/
|
|
700
656
|
export interface TaxDocumentMetadata {
|
|
701
657
|
/**
|
|
702
|
-
* <p>The tax document access token, which contains information that the Tax Settings API uses to locate the tax document.</p>
|
|
703
|
-
* <note>
|
|
704
|
-
* <p>If you update your tax registration, the existing <code>taxDocumentAccessToken</code> won't be valid. To get the latest token, call the <code>GetTaxRegistration</code> or <code>ListTaxRegistrations</code> API operation. This token is valid for 24 hours.</p>
|
|
705
|
-
* </note>
|
|
658
|
+
* <p>The tax document access token, which contains information that the Tax Settings API uses to locate the tax document.</p> <note> <p>If you update your tax registration, the existing <code>taxDocumentAccessToken</code> won't be valid. To get the latest token, call the <code>GetTaxRegistration</code> or <code>ListTaxRegistrations</code> API operation. This token is valid for 24 hours.</p> </note>
|
|
706
659
|
* @public
|
|
707
660
|
*/
|
|
708
661
|
taxDocumentAccessToken: string | undefined;
|
|
@@ -713,8 +666,7 @@ export interface TaxDocumentMetadata {
|
|
|
713
666
|
taxDocumentName: string | undefined;
|
|
714
667
|
}
|
|
715
668
|
/**
|
|
716
|
-
* <p>Your TRN information with jurisdiction details. This doesn't contain the full legal
|
|
717
|
-
* address associated with the TRN information.</p>
|
|
669
|
+
* <p>Your TRN information with jurisdiction details. This doesn't contain the full legal address associated with the TRN information.</p>
|
|
718
670
|
* @public
|
|
719
671
|
*/
|
|
720
672
|
export interface TaxRegistrationWithJurisdiction {
|
|
@@ -724,8 +676,7 @@ export interface TaxRegistrationWithJurisdiction {
|
|
|
724
676
|
*/
|
|
725
677
|
registrationId: string | undefined;
|
|
726
678
|
/**
|
|
727
|
-
* <p> The type of your tax registration. This can be either <code>VAT</code> or
|
|
728
|
-
* <code>GST</code>. </p>
|
|
679
|
+
* <p> The type of your tax registration. This can be either <code>VAT</code> or <code>GST</code>. </p>
|
|
729
680
|
* @public
|
|
730
681
|
*/
|
|
731
682
|
registrationType: TaxRegistrationType | undefined;
|
|
@@ -735,14 +686,12 @@ export interface TaxRegistrationWithJurisdiction {
|
|
|
735
686
|
*/
|
|
736
687
|
legalName: string | undefined;
|
|
737
688
|
/**
|
|
738
|
-
* <p>The status of your TRN. This can be either <code>Verified</code>, <code>Pending</code>,
|
|
739
|
-
* <code>Deleted</code>, or <code>Rejected</code>. </p>
|
|
689
|
+
* <p>The status of your TRN. This can be either <code>Verified</code>, <code>Pending</code>, <code>Deleted</code>, or <code>Rejected</code>. </p>
|
|
740
690
|
* @public
|
|
741
691
|
*/
|
|
742
692
|
status: TaxRegistrationStatus | undefined;
|
|
743
693
|
/**
|
|
744
|
-
* <p>The industry that describes your business. For business-to-business (B2B) customers, specify Business. For business-to-consumer (B2C) customers, specify Individual. For business-to-government (B2G), specify Government.Note that certain values may not applicable for the request country. Please refer to country specific information in API document.
|
|
745
|
-
* </p>
|
|
694
|
+
* <p>The industry that describes your business. For business-to-business (B2B) customers, specify Business. For business-to-consumer (B2C) customers, specify Individual. For business-to-government (B2G), specify Government.Note that certain values may not applicable for the request country. Please refer to country specific information in API document. </p>
|
|
746
695
|
* @public
|
|
747
696
|
*/
|
|
748
697
|
sector?: Sector | undefined;
|
|
@@ -778,36 +727,23 @@ export interface AccountDetails {
|
|
|
778
727
|
*/
|
|
779
728
|
accountId?: string | undefined;
|
|
780
729
|
/**
|
|
781
|
-
* <p>Your TRN information. Instead of having full legal address, here TRN information will have
|
|
782
|
-
* jurisdiction details (for example, country code and state/region/province if applicable). </p>
|
|
730
|
+
* <p>Your TRN information. Instead of having full legal address, here TRN information will have jurisdiction details (for example, country code and state/region/province if applicable). </p>
|
|
783
731
|
* @public
|
|
784
732
|
*/
|
|
785
733
|
taxRegistration?: TaxRegistrationWithJurisdiction | undefined;
|
|
786
734
|
/**
|
|
787
|
-
* <p>
|
|
788
|
-
* Tax inheritance information associated with the account.
|
|
789
|
-
* </p>
|
|
735
|
+
* <p> Tax inheritance information associated with the account. </p>
|
|
790
736
|
* @public
|
|
791
737
|
*/
|
|
792
738
|
taxInheritanceDetails?: TaxInheritanceDetails | undefined;
|
|
793
739
|
/**
|
|
794
|
-
* <p>
|
|
795
|
-
* The meta data information associated with the account.
|
|
796
|
-
* </p>
|
|
740
|
+
* <p> The meta data information associated with the account. </p>
|
|
797
741
|
* @public
|
|
798
742
|
*/
|
|
799
743
|
accountMetaData?: AccountMetaData | undefined;
|
|
800
744
|
}
|
|
801
745
|
/**
|
|
802
|
-
* <p>Additional tax information associated with your tax registration number (TRN). Depending
|
|
803
|
-
* on the TRN for a specific country, you might need to specify this information when you set
|
|
804
|
-
* your TRN. </p>
|
|
805
|
-
* <p>You can only specify one of the following parameters and the value can't be empty. </p>
|
|
806
|
-
* <note>
|
|
807
|
-
* <p>The parameter that you specify must match the country for the TRN, if available. For
|
|
808
|
-
* example, if you set a TRN in Canada for specific provinces, you must also specify the
|
|
809
|
-
* <code>canadaAdditionalInfo</code> parameter.</p>
|
|
810
|
-
* </note>
|
|
746
|
+
* <p>Additional tax information associated with your tax registration number (TRN). Depending on the TRN for a specific country, you might need to specify this information when you set your TRN. </p> <p>You can only specify one of the following parameters and the value can't be empty. </p> <note> <p>The parameter that you specify must match the country for the TRN, if available. For example, if you set a TRN in Canada for specific provinces, you must also specify the <code>canadaAdditionalInfo</code> parameter.</p> </note>
|
|
811
747
|
* @public
|
|
812
748
|
*/
|
|
813
749
|
export interface AdditionalInfoRequest {
|
|
@@ -852,16 +788,12 @@ export interface AdditionalInfoRequest {
|
|
|
852
788
|
*/
|
|
853
789
|
turkeyAdditionalInfo?: TurkeyAdditionalInfo | undefined;
|
|
854
790
|
/**
|
|
855
|
-
* <p>
|
|
856
|
-
* Additional tax information to specify for a TRN in Georgia.
|
|
857
|
-
* </p>
|
|
791
|
+
* <p> Additional tax information to specify for a TRN in Georgia. </p>
|
|
858
792
|
* @public
|
|
859
793
|
*/
|
|
860
794
|
georgiaAdditionalInfo?: GeorgiaAdditionalInfo | undefined;
|
|
861
795
|
/**
|
|
862
|
-
* <p>
|
|
863
|
-
* Additional tax information to specify for a TRN in Italy.
|
|
864
|
-
* </p>
|
|
796
|
+
* <p> Additional tax information to specify for a TRN in Italy. </p>
|
|
865
797
|
* @public
|
|
866
798
|
*/
|
|
867
799
|
italyAdditionalInfo?: ItalyAdditionalInfo | undefined;
|
|
@@ -871,41 +803,32 @@ export interface AdditionalInfoRequest {
|
|
|
871
803
|
*/
|
|
872
804
|
romaniaAdditionalInfo?: RomaniaAdditionalInfo | undefined;
|
|
873
805
|
/**
|
|
874
|
-
* <p>
|
|
875
|
-
* Additional tax information associated with your TRN in Ukraine.
|
|
876
|
-
* </p>
|
|
806
|
+
* <p> Additional tax information associated with your TRN in Ukraine. </p>
|
|
877
807
|
* @public
|
|
878
808
|
*/
|
|
879
809
|
ukraineAdditionalInfo?: UkraineAdditionalInfo | undefined;
|
|
880
810
|
/**
|
|
881
|
-
* <p>
|
|
882
|
-
* Additional tax information associated with your TRN in Poland.
|
|
883
|
-
* </p>
|
|
811
|
+
* <p> Additional tax information associated with your TRN in Poland. </p>
|
|
884
812
|
* @public
|
|
885
813
|
*/
|
|
886
814
|
polandAdditionalInfo?: PolandAdditionalInfo | undefined;
|
|
887
815
|
/**
|
|
888
|
-
* <p>
|
|
889
|
-
* Additional tax information associated with your TRN in Saudi Arabia.
|
|
890
|
-
* </p>
|
|
816
|
+
* <p> Additional tax information associated with your TRN in Saudi Arabia. </p>
|
|
891
817
|
* @public
|
|
892
818
|
*/
|
|
893
819
|
saudiArabiaAdditionalInfo?: SaudiArabiaAdditionalInfo | undefined;
|
|
894
820
|
/**
|
|
895
|
-
* <p>
|
|
896
|
-
* </p>
|
|
821
|
+
* <p> </p>
|
|
897
822
|
* @public
|
|
898
823
|
*/
|
|
899
824
|
indonesiaAdditionalInfo?: IndonesiaAdditionalInfo | undefined;
|
|
900
825
|
/**
|
|
901
|
-
* <p>Additional tax information to specify for a TRN in Vietnam.
|
|
902
|
-
* </p>
|
|
826
|
+
* <p>Additional tax information to specify for a TRN in Vietnam. </p>
|
|
903
827
|
* @public
|
|
904
828
|
*/
|
|
905
829
|
vietnamAdditionalInfo?: VietnamAdditionalInfo | undefined;
|
|
906
830
|
/**
|
|
907
|
-
* <p>Additional tax information to specify for a TRN in Egypt.
|
|
908
|
-
* </p>
|
|
831
|
+
* <p>Additional tax information to specify for a TRN in Egypt. </p>
|
|
909
832
|
* @public
|
|
910
833
|
*/
|
|
911
834
|
egyptAdditionalInfo?: EgyptAdditionalInfo | undefined;
|
|
@@ -915,30 +838,43 @@ export interface AdditionalInfoRequest {
|
|
|
915
838
|
*/
|
|
916
839
|
greeceAdditionalInfo?: GreeceAdditionalInfo | undefined;
|
|
917
840
|
/**
|
|
918
|
-
* <p>
|
|
919
|
-
* Additional tax information to specify for a TRN in Uzbekistan.
|
|
920
|
-
* </p>
|
|
841
|
+
* <p> Additional tax information to specify for a TRN in Uzbekistan. </p>
|
|
921
842
|
* @public
|
|
922
843
|
*/
|
|
923
844
|
uzbekistanAdditionalInfo?: UzbekistanAdditionalInfo | undefined;
|
|
845
|
+
/**
|
|
846
|
+
* <p>Additional tax information to specify for a TRN in the Philippines.</p>
|
|
847
|
+
* @public
|
|
848
|
+
*/
|
|
849
|
+
philippinesAdditionalInfo?: PhilippinesAdditionalInfo | undefined;
|
|
850
|
+
/**
|
|
851
|
+
* <p>Additional tax information to specify for a TRN in Belgium.</p>
|
|
852
|
+
* @public
|
|
853
|
+
*/
|
|
854
|
+
belgiumAdditionalInfo?: BelgiumAdditionalInfo | undefined;
|
|
855
|
+
/**
|
|
856
|
+
* <p> Additional tax information to specify for a TRN in Chile.</p>
|
|
857
|
+
* @public
|
|
858
|
+
*/
|
|
859
|
+
chileAdditionalInfo?: ChileAdditionalInfo | undefined;
|
|
860
|
+
/**
|
|
861
|
+
* <p>Additional tax information to specify for a TRN in France.</p>
|
|
862
|
+
* @public
|
|
863
|
+
*/
|
|
864
|
+
franceAdditionalInfo?: FranceAdditionalInfo | undefined;
|
|
924
865
|
}
|
|
925
866
|
/**
|
|
926
|
-
* <p>The address domain associate with the tax information.
|
|
927
|
-
* </p>
|
|
867
|
+
* <p>The address domain associate with the tax information. </p>
|
|
928
868
|
* @public
|
|
929
869
|
*/
|
|
930
870
|
export interface Authority {
|
|
931
871
|
/**
|
|
932
|
-
* <p>
|
|
933
|
-
* The country code for the country that the address is in.
|
|
934
|
-
* </p>
|
|
872
|
+
* <p> The country code for the country that the address is in. </p>
|
|
935
873
|
* @public
|
|
936
874
|
*/
|
|
937
875
|
country: string | undefined;
|
|
938
876
|
/**
|
|
939
|
-
* <p>
|
|
940
|
-
* The state that the address is located.
|
|
941
|
-
* </p>
|
|
877
|
+
* <p> The state that the address is located. </p>
|
|
942
878
|
* @public
|
|
943
879
|
*/
|
|
944
880
|
state?: string | undefined;
|
|
@@ -954,20 +890,17 @@ export interface BatchDeleteTaxRegistrationRequest {
|
|
|
954
890
|
accountIds: string[] | undefined;
|
|
955
891
|
}
|
|
956
892
|
/**
|
|
957
|
-
* <p> The error object for representing failures in the <code>BatchDeleteTaxRegistration</code>
|
|
958
|
-
* operation. </p>
|
|
893
|
+
* <p> The error object for representing failures in the <code>BatchDeleteTaxRegistration</code> operation. </p>
|
|
959
894
|
* @public
|
|
960
895
|
*/
|
|
961
896
|
export interface BatchDeleteTaxRegistrationError {
|
|
962
897
|
/**
|
|
963
|
-
* <p> The unique account identifier for the account whose tax registration couldn't be deleted
|
|
964
|
-
* during the <code>BatchDeleteTaxRegistration</code> operation. </p>
|
|
898
|
+
* <p> The unique account identifier for the account whose tax registration couldn't be deleted during the <code>BatchDeleteTaxRegistration</code> operation. </p>
|
|
965
899
|
* @public
|
|
966
900
|
*/
|
|
967
901
|
accountId: string | undefined;
|
|
968
902
|
/**
|
|
969
|
-
* <p> The error message for an individual failure in the
|
|
970
|
-
* <code>BatchDeleteTaxRegistration</code> operation. </p>
|
|
903
|
+
* <p> The error message for an individual failure in the <code>BatchDeleteTaxRegistration</code> operation. </p>
|
|
971
904
|
* @public
|
|
972
905
|
*/
|
|
973
906
|
message: string | undefined;
|
|
@@ -1003,108 +936,90 @@ export interface ValidationExceptionField {
|
|
|
1003
936
|
*/
|
|
1004
937
|
export interface BatchGetTaxExemptionsRequest {
|
|
1005
938
|
/**
|
|
1006
|
-
* <p>
|
|
1007
|
-
* List of unique account identifiers.
|
|
1008
|
-
* </p>
|
|
939
|
+
* <p> List of unique account identifiers. </p>
|
|
1009
940
|
* @public
|
|
1010
941
|
*/
|
|
1011
942
|
accountIds: string[] | undefined;
|
|
1012
943
|
}
|
|
1013
944
|
/**
|
|
1014
|
-
* <p>The tax exemption type.
|
|
1015
|
-
* </p>
|
|
945
|
+
* <p>The tax exemption type. </p>
|
|
1016
946
|
* @public
|
|
1017
947
|
*/
|
|
1018
948
|
export interface TaxExemptionType {
|
|
1019
949
|
/**
|
|
1020
|
-
* <p>The tax exemption's type display name.
|
|
1021
|
-
* </p>
|
|
950
|
+
* <p>The tax exemption's type display name. </p>
|
|
1022
951
|
* @public
|
|
1023
952
|
*/
|
|
1024
953
|
displayName?: string | undefined;
|
|
1025
954
|
/**
|
|
1026
|
-
* <p>The tax exemption's type description.
|
|
1027
|
-
* </p>
|
|
955
|
+
* <p>The tax exemption's type description. </p>
|
|
1028
956
|
* @public
|
|
1029
957
|
*/
|
|
1030
958
|
description?: string | undefined;
|
|
1031
959
|
/**
|
|
1032
|
-
* <p>The tax exemption's applicable jurisdictions.
|
|
1033
|
-
* </p>
|
|
960
|
+
* <p>The tax exemption's applicable jurisdictions. </p>
|
|
1034
961
|
* @public
|
|
1035
962
|
*/
|
|
1036
963
|
applicableJurisdictions?: Authority[] | undefined;
|
|
1037
964
|
}
|
|
1038
965
|
/**
|
|
1039
|
-
* <p>The tax exemption.
|
|
1040
|
-
* </p>
|
|
966
|
+
* <p>The tax exemption. </p>
|
|
1041
967
|
* @public
|
|
1042
968
|
*/
|
|
1043
969
|
export interface TaxExemption {
|
|
1044
970
|
/**
|
|
1045
|
-
* <p>The address domain associate with tax exemption.
|
|
1046
|
-
* </p>
|
|
971
|
+
* <p>The address domain associate with tax exemption. </p>
|
|
1047
972
|
* @public
|
|
1048
973
|
*/
|
|
1049
974
|
authority: Authority | undefined;
|
|
1050
975
|
/**
|
|
1051
|
-
* <p>The tax exemption type.
|
|
1052
|
-
* </p>
|
|
976
|
+
* <p>The tax exemption type. </p>
|
|
1053
977
|
* @public
|
|
1054
978
|
*/
|
|
1055
979
|
taxExemptionType: TaxExemptionType | undefined;
|
|
1056
980
|
/**
|
|
1057
|
-
* <p>The tax exemption effective date.
|
|
1058
|
-
* </p>
|
|
981
|
+
* <p>The tax exemption effective date. </p>
|
|
1059
982
|
* @public
|
|
1060
983
|
*/
|
|
1061
984
|
effectiveDate?: Date | undefined;
|
|
1062
985
|
/**
|
|
1063
|
-
* <p>The tax exemption expiration date.
|
|
1064
|
-
* </p>
|
|
986
|
+
* <p>The tax exemption expiration date. </p>
|
|
1065
987
|
* @public
|
|
1066
988
|
*/
|
|
1067
989
|
expirationDate?: Date | undefined;
|
|
1068
990
|
/**
|
|
1069
|
-
* <p>The tax exemption recording time in the <code>TaxSettings</code> system.
|
|
1070
|
-
* </p>
|
|
991
|
+
* <p>The tax exemption recording time in the <code>TaxSettings</code> system. </p>
|
|
1071
992
|
* @public
|
|
1072
993
|
*/
|
|
1073
994
|
systemEffectiveDate?: Date | undefined;
|
|
1074
995
|
/**
|
|
1075
|
-
* <p>The tax exemption status.
|
|
1076
|
-
* </p>
|
|
996
|
+
* <p>The tax exemption status. </p>
|
|
1077
997
|
* @public
|
|
1078
998
|
*/
|
|
1079
999
|
status?: EntityExemptionAccountStatus | undefined;
|
|
1080
1000
|
}
|
|
1081
1001
|
/**
|
|
1082
|
-
* <p>The tax exemption details.
|
|
1083
|
-
* </p>
|
|
1002
|
+
* <p>The tax exemption details. </p>
|
|
1084
1003
|
* @public
|
|
1085
1004
|
*/
|
|
1086
1005
|
export interface TaxExemptionDetails {
|
|
1087
1006
|
/**
|
|
1088
|
-
* <p>Tax exemptions.
|
|
1089
|
-
* </p>
|
|
1007
|
+
* <p>Tax exemptions. </p>
|
|
1090
1008
|
* @public
|
|
1091
1009
|
*/
|
|
1092
1010
|
taxExemptions?: TaxExemption[] | undefined;
|
|
1093
1011
|
/**
|
|
1094
|
-
* <p>The indicator if the tax exemption is inherited from the consolidated billing family management account.
|
|
1095
|
-
* </p>
|
|
1012
|
+
* <p>The indicator if the tax exemption is inherited from the consolidated billing family management account. </p>
|
|
1096
1013
|
* @public
|
|
1097
1014
|
*/
|
|
1098
1015
|
heritageObtainedDetails?: boolean | undefined;
|
|
1099
1016
|
/**
|
|
1100
|
-
* <p>The consolidated billing family management account the tax exemption inherited from.
|
|
1101
|
-
* </p>
|
|
1017
|
+
* <p>The consolidated billing family management account the tax exemption inherited from. </p>
|
|
1102
1018
|
* @public
|
|
1103
1019
|
*/
|
|
1104
1020
|
heritageObtainedParentEntity?: string | undefined;
|
|
1105
1021
|
/**
|
|
1106
|
-
* <p>The reason of the heritage inheritance.
|
|
1107
|
-
* </p>
|
|
1022
|
+
* <p>The reason of the heritage inheritance. </p>
|
|
1108
1023
|
* @public
|
|
1109
1024
|
*/
|
|
1110
1025
|
heritageObtainedReason?: string | undefined;
|
|
@@ -1114,33 +1029,28 @@ export interface TaxExemptionDetails {
|
|
|
1114
1029
|
*/
|
|
1115
1030
|
export interface BatchGetTaxExemptionsResponse {
|
|
1116
1031
|
/**
|
|
1117
|
-
* <p>The tax exemption details map of accountId and tax exemption details.
|
|
1118
|
-
* </p>
|
|
1032
|
+
* <p>The tax exemption details map of accountId and tax exemption details. </p>
|
|
1119
1033
|
* @public
|
|
1120
1034
|
*/
|
|
1121
1035
|
taxExemptionDetailsMap?: Record<string, TaxExemptionDetails> | undefined;
|
|
1122
1036
|
/**
|
|
1123
|
-
* <p>The list of accounts that failed to get tax exemptions.
|
|
1124
|
-
* </p>
|
|
1037
|
+
* <p>The list of accounts that failed to get tax exemptions. </p>
|
|
1125
1038
|
* @public
|
|
1126
1039
|
*/
|
|
1127
1040
|
failedAccounts?: string[] | undefined;
|
|
1128
1041
|
}
|
|
1129
1042
|
/**
|
|
1130
|
-
* <p>The tax registration document.
|
|
1131
|
-
* </p>
|
|
1043
|
+
* <p>The tax registration document. </p>
|
|
1132
1044
|
* @public
|
|
1133
1045
|
*/
|
|
1134
1046
|
export interface TaxRegistrationDocFile {
|
|
1135
1047
|
/**
|
|
1136
|
-
* <p>The tax registration document name.
|
|
1137
|
-
* </p>
|
|
1048
|
+
* <p>The tax registration document name. </p>
|
|
1138
1049
|
* @public
|
|
1139
1050
|
*/
|
|
1140
1051
|
fileName: string | undefined;
|
|
1141
1052
|
/**
|
|
1142
|
-
* <p>The tax registration document content.
|
|
1143
|
-
* </p>
|
|
1053
|
+
* <p>The tax registration document content. </p>
|
|
1144
1054
|
* @public
|
|
1145
1055
|
*/
|
|
1146
1056
|
fileContent: Uint8Array | undefined;
|
|
@@ -1172,8 +1082,7 @@ export interface TaxRegistrationDocument {
|
|
|
1172
1082
|
*/
|
|
1173
1083
|
s3Location?: SourceS3Location | undefined;
|
|
1174
1084
|
/**
|
|
1175
|
-
* <p>The tax registration document.
|
|
1176
|
-
* </p>
|
|
1085
|
+
* <p>The tax registration document. </p>
|
|
1177
1086
|
* @public
|
|
1178
1087
|
*/
|
|
1179
1088
|
file?: TaxRegistrationDocFile | undefined;
|
|
@@ -1205,51 +1114,32 @@ export interface TaxRegistrationEntry {
|
|
|
1205
1114
|
*/
|
|
1206
1115
|
registrationId: string | undefined;
|
|
1207
1116
|
/**
|
|
1208
|
-
* <p> Your tax registration type. This can be either <code>VAT</code> or <code>GST</code>.
|
|
1209
|
-
* </p>
|
|
1117
|
+
* <p> Your tax registration type. This can be either <code>VAT</code> or <code>GST</code>. </p>
|
|
1210
1118
|
* @public
|
|
1211
1119
|
*/
|
|
1212
1120
|
registrationType: TaxRegistrationType | undefined;
|
|
1213
1121
|
/**
|
|
1214
|
-
* <p>The legal name associated with your TRN. </p>
|
|
1215
|
-
* <note>
|
|
1216
|
-
* <p>If you're setting a TRN in Brazil, you don't need to specify the legal name. For TRNs in
|
|
1217
|
-
* other countries, you must specify the legal name.</p>
|
|
1218
|
-
* </note>
|
|
1122
|
+
* <p>The legal name associated with your TRN. </p> <note> <p>If you're setting a TRN in Brazil, you don't need to specify the legal name. For TRNs in other countries, you must specify the legal name.</p> </note>
|
|
1219
1123
|
* @public
|
|
1220
1124
|
*/
|
|
1221
1125
|
legalName?: string | undefined;
|
|
1222
1126
|
/**
|
|
1223
|
-
* <p>The legal address associated with your TRN.</p>
|
|
1224
|
-
* <note>
|
|
1225
|
-
* <p>If you're setting a TRN in Brazil for the CNPJ tax type, you don't need to specify the
|
|
1226
|
-
* legal address. </p>
|
|
1227
|
-
* <p>For TRNs in other countries and for CPF tax types Brazil, you must specify the legal
|
|
1228
|
-
* address.</p>
|
|
1229
|
-
* </note>
|
|
1127
|
+
* <p>The legal address associated with your TRN.</p> <note> <p>If you're setting a TRN in Brazil for the CNPJ tax type, you don't need to specify the legal address. </p> <p>For TRNs in other countries and for CPF tax types Brazil, you must specify the legal address.</p> </note>
|
|
1230
1128
|
* @public
|
|
1231
1129
|
*/
|
|
1232
1130
|
legalAddress?: Address | undefined;
|
|
1233
1131
|
/**
|
|
1234
|
-
* <p>The industry that describes your business. For business-to-business (B2B) customers, specify Business. For business-to-consumer (B2C) customers, specify Individual. For business-to-government (B2G), specify Government.Note that certain values may not applicable for the request country. Please refer to country specific information in API document.
|
|
1235
|
-
* </p>
|
|
1132
|
+
* <p>The industry that describes your business. For business-to-business (B2B) customers, specify Business. For business-to-consumer (B2C) customers, specify Individual. For business-to-government (B2G), specify Government.Note that certain values may not applicable for the request country. Please refer to country specific information in API document. </p>
|
|
1236
1133
|
* @public
|
|
1237
1134
|
*/
|
|
1238
1135
|
sector?: Sector | undefined;
|
|
1239
1136
|
/**
|
|
1240
|
-
* <p> Additional tax information associated with your TRN. You only need to specify this
|
|
1241
|
-
* parameter if Amazon Web Services collects any additional information for your country within
|
|
1242
|
-
* <a>AdditionalInfoRequest</a>.</p>
|
|
1137
|
+
* <p> Additional tax information associated with your TRN. You only need to specify this parameter if Amazon Web Services collects any additional information for your country within <a>AdditionalInfoRequest</a>.</p>
|
|
1243
1138
|
* @public
|
|
1244
1139
|
*/
|
|
1245
1140
|
additionalTaxInformation?: AdditionalInfoRequest | undefined;
|
|
1246
1141
|
/**
|
|
1247
|
-
* <p>Additional details needed to verify your TRN information in Brazil. You only need to specify this
|
|
1248
|
-
* parameter when you set a TRN in Brazil that is the CPF tax type.</p>
|
|
1249
|
-
* <note>
|
|
1250
|
-
* <p>Don't specify this parameter to set a TRN in Brazil of the CNPJ tax type or to set a TRN
|
|
1251
|
-
* for another country. </p>
|
|
1252
|
-
* </note>
|
|
1142
|
+
* <p>Additional details needed to verify your TRN information in Brazil. You only need to specify this parameter when you set a TRN in Brazil that is the CPF tax type.</p> <note> <p>Don't specify this parameter to set a TRN in Brazil of the CNPJ tax type or to set a TRN for another country. </p> </note>
|
|
1253
1143
|
* @public
|
|
1254
1144
|
*/
|
|
1255
1145
|
verificationDetails?: VerificationDetails | undefined;
|
|
@@ -1269,33 +1159,28 @@ export interface BatchPutTaxRegistrationRequest {
|
|
|
1269
1159
|
*/
|
|
1270
1160
|
accountIds: string[] | undefined;
|
|
1271
1161
|
/**
|
|
1272
|
-
* <p>Your TRN information that will be stored to the accounts mentioned in
|
|
1273
|
-
* <code>putEntries</code>. </p>
|
|
1162
|
+
* <p>Your TRN information that will be stored to the accounts mentioned in <code>putEntries</code>. </p>
|
|
1274
1163
|
* @public
|
|
1275
1164
|
*/
|
|
1276
1165
|
taxRegistrationEntry: TaxRegistrationEntry | undefined;
|
|
1277
1166
|
}
|
|
1278
1167
|
/**
|
|
1279
|
-
* <p> The error object for representing failures in the <code>BatchPutTaxRegistration</code>
|
|
1280
|
-
* operation. </p>
|
|
1168
|
+
* <p> The error object for representing failures in the <code>BatchPutTaxRegistration</code> operation. </p>
|
|
1281
1169
|
* @public
|
|
1282
1170
|
*/
|
|
1283
1171
|
export interface BatchPutTaxRegistrationError {
|
|
1284
1172
|
/**
|
|
1285
|
-
* <p> The unique account identifier for the account that the tax registration couldn't be
|
|
1286
|
-
* added, or updated during the <code>BatchPutTaxRegistration</code> operation. </p>
|
|
1173
|
+
* <p> The unique account identifier for the account that the tax registration couldn't be added, or updated during the <code>BatchPutTaxRegistration</code> operation. </p>
|
|
1287
1174
|
* @public
|
|
1288
1175
|
*/
|
|
1289
1176
|
accountId: string | undefined;
|
|
1290
1177
|
/**
|
|
1291
|
-
* <p> The error message for an individual failure in the <code>BatchPutTaxRegistration</code>
|
|
1292
|
-
* operation. </p>
|
|
1178
|
+
* <p> The error message for an individual failure in the <code>BatchPutTaxRegistration</code> operation. </p>
|
|
1293
1179
|
* @public
|
|
1294
1180
|
*/
|
|
1295
1181
|
message: string | undefined;
|
|
1296
1182
|
/**
|
|
1297
|
-
* <p> The error code for an individual failure in the <code>BatchPutTaxRegistration</code>
|
|
1298
|
-
* operation. </p>
|
|
1183
|
+
* <p> The error code for an individual failure in the <code>BatchPutTaxRegistration</code> operation. </p>
|
|
1299
1184
|
* @public
|
|
1300
1185
|
*/
|
|
1301
1186
|
code?: string | undefined;
|
|
@@ -1305,15 +1190,12 @@ export interface BatchPutTaxRegistrationError {
|
|
|
1305
1190
|
*/
|
|
1306
1191
|
export interface BatchPutTaxRegistrationResponse {
|
|
1307
1192
|
/**
|
|
1308
|
-
* <p>The status of your TRN stored in the system after processing. Based on the validation
|
|
1309
|
-
* occurring on the TRN, the status can be <code>Verified</code>, <code>Pending</code> or
|
|
1310
|
-
* <code>Rejected</code>. </p>
|
|
1193
|
+
* <p>The status of your TRN stored in the system after processing. Based on the validation occurring on the TRN, the status can be <code>Verified</code>, <code>Pending</code> or <code>Rejected</code>. </p>
|
|
1311
1194
|
* @public
|
|
1312
1195
|
*/
|
|
1313
1196
|
status?: TaxRegistrationStatus | undefined;
|
|
1314
1197
|
/**
|
|
1315
|
-
* <p>List of errors for the accounts the TRN information could not be added or updated to.
|
|
1316
|
-
* </p>
|
|
1198
|
+
* <p>List of errors for the accounts the TRN information could not be added or updated to. </p>
|
|
1317
1199
|
* @public
|
|
1318
1200
|
*/
|
|
1319
1201
|
errors: BatchPutTaxRegistrationError[] | undefined;
|
|
@@ -1323,9 +1205,7 @@ export interface BatchPutTaxRegistrationResponse {
|
|
|
1323
1205
|
*/
|
|
1324
1206
|
export interface DeleteSupplementalTaxRegistrationRequest {
|
|
1325
1207
|
/**
|
|
1326
|
-
* <p>
|
|
1327
|
-
* The unique authority Id for the supplemental TRN information that needs to be deleted.
|
|
1328
|
-
* </p>
|
|
1208
|
+
* <p> The unique authority Id for the supplemental TRN information that needs to be deleted. </p>
|
|
1329
1209
|
* @public
|
|
1330
1210
|
*/
|
|
1331
1211
|
authorityId: string | undefined;
|
|
@@ -1340,9 +1220,7 @@ export interface DeleteSupplementalTaxRegistrationResponse {
|
|
|
1340
1220
|
*/
|
|
1341
1221
|
export interface DeleteTaxRegistrationRequest {
|
|
1342
1222
|
/**
|
|
1343
|
-
* <p>Unique account identifier for the TRN information that needs to be deleted. If this isn't
|
|
1344
|
-
* passed, the account ID corresponding to the credentials of the API caller will be used for
|
|
1345
|
-
* this parameter.</p>
|
|
1223
|
+
* <p>Unique account identifier for the TRN information that needs to be deleted. If this isn't passed, the account ID corresponding to the credentials of the API caller will be used for this parameter.</p>
|
|
1346
1224
|
* @public
|
|
1347
1225
|
*/
|
|
1348
1226
|
accountId?: string | undefined;
|
|
@@ -1369,20 +1247,17 @@ export interface DestinationS3Location {
|
|
|
1369
1247
|
prefix?: string | undefined;
|
|
1370
1248
|
}
|
|
1371
1249
|
/**
|
|
1372
|
-
* <p>The exemption certificate.
|
|
1373
|
-
* </p>
|
|
1250
|
+
* <p>The exemption certificate. </p>
|
|
1374
1251
|
* @public
|
|
1375
1252
|
*/
|
|
1376
1253
|
export interface ExemptionCertificate {
|
|
1377
1254
|
/**
|
|
1378
|
-
* <p>The exemption certificate file name.
|
|
1379
|
-
* </p>
|
|
1255
|
+
* <p>The exemption certificate file name. </p>
|
|
1380
1256
|
* @public
|
|
1381
1257
|
*/
|
|
1382
1258
|
documentName: string | undefined;
|
|
1383
1259
|
/**
|
|
1384
|
-
* <p>The exemption certificate file content.
|
|
1385
|
-
* </p>
|
|
1260
|
+
* <p>The exemption certificate file content. </p>
|
|
1386
1261
|
* @public
|
|
1387
1262
|
*/
|
|
1388
1263
|
documentFile: Uint8Array | undefined;
|
|
@@ -1397,8 +1272,7 @@ export interface GetTaxExemptionTypesRequest {
|
|
|
1397
1272
|
*/
|
|
1398
1273
|
export interface GetTaxExemptionTypesResponse {
|
|
1399
1274
|
/**
|
|
1400
|
-
* <p>The supported types of tax exemptions.
|
|
1401
|
-
* </p>
|
|
1275
|
+
* <p>The supported types of tax exemptions. </p>
|
|
1402
1276
|
* @public
|
|
1403
1277
|
*/
|
|
1404
1278
|
taxExemptionTypes?: TaxExemptionType[] | undefined;
|
|
@@ -1413,8 +1287,7 @@ export interface GetTaxInheritanceRequest {
|
|
|
1413
1287
|
*/
|
|
1414
1288
|
export interface GetTaxInheritanceResponse {
|
|
1415
1289
|
/**
|
|
1416
|
-
* <p>The tax inheritance status.
|
|
1417
|
-
* </p>
|
|
1290
|
+
* <p>The tax inheritance status. </p>
|
|
1418
1291
|
* @public
|
|
1419
1292
|
*/
|
|
1420
1293
|
heritageStatus?: HeritageStatus | undefined;
|
|
@@ -1440,8 +1313,7 @@ export interface TaxRegistration {
|
|
|
1440
1313
|
*/
|
|
1441
1314
|
registrationId: string | undefined;
|
|
1442
1315
|
/**
|
|
1443
|
-
* <p>Type of your tax registration.
|
|
1444
|
-
* </p>
|
|
1316
|
+
* <p>Type of your tax registration. </p>
|
|
1445
1317
|
* @public
|
|
1446
1318
|
*/
|
|
1447
1319
|
registrationType: TaxRegistrationType | undefined;
|
|
@@ -1451,14 +1323,12 @@ export interface TaxRegistration {
|
|
|
1451
1323
|
*/
|
|
1452
1324
|
legalName: string | undefined;
|
|
1453
1325
|
/**
|
|
1454
|
-
* <p> The status of your TRN. This can be either <code>Verified</code>, <code>Pending</code>,
|
|
1455
|
-
* <code>Deleted</code>, or <code>Rejected</code>. </p>
|
|
1326
|
+
* <p> The status of your TRN. This can be either <code>Verified</code>, <code>Pending</code>, <code>Deleted</code>, or <code>Rejected</code>. </p>
|
|
1456
1327
|
* @public
|
|
1457
1328
|
*/
|
|
1458
1329
|
status: TaxRegistrationStatus | undefined;
|
|
1459
1330
|
/**
|
|
1460
|
-
* <p>The industry that describes your business. For business-to-business (B2B) customers, specify Business. For business-to-consumer (B2C) customers, specify Individual. For business-to-government (B2G), specify Government. Note that certain values may not applicable for the request country. Please refer to country specific information in API document.
|
|
1461
|
-
* </p>
|
|
1331
|
+
* <p>The industry that describes your business. For business-to-business (B2B) customers, specify Business. For business-to-consumer (B2C) customers, specify Individual. For business-to-government (B2G), specify Government. Note that certain values may not applicable for the request country. Please refer to country specific information in API document. </p>
|
|
1462
1332
|
* @public
|
|
1463
1333
|
*/
|
|
1464
1334
|
sector?: Sector | undefined;
|
|
@@ -1518,8 +1388,7 @@ export interface GetTaxRegistrationDocumentResponse {
|
|
|
1518
1388
|
*/
|
|
1519
1389
|
destinationFilePath?: string | undefined;
|
|
1520
1390
|
/**
|
|
1521
|
-
* <p>The Amazon S3 presigned URL of the tax registration document.
|
|
1522
|
-
* </p>
|
|
1391
|
+
* <p>The Amazon S3 presigned URL of the tax registration document. </p>
|
|
1523
1392
|
* @public
|
|
1524
1393
|
*/
|
|
1525
1394
|
presignedS3Url?: string | undefined;
|
|
@@ -1529,45 +1398,33 @@ export interface GetTaxRegistrationDocumentResponse {
|
|
|
1529
1398
|
*/
|
|
1530
1399
|
export interface ListSupplementalTaxRegistrationsRequest {
|
|
1531
1400
|
/**
|
|
1532
|
-
* <p>
|
|
1533
|
-
* The number of <code>taxRegistrations</code> results you want in one response.
|
|
1534
|
-
* </p>
|
|
1401
|
+
* <p> The number of <code>taxRegistrations</code> results you want in one response. </p>
|
|
1535
1402
|
* @public
|
|
1536
1403
|
*/
|
|
1537
1404
|
maxResults?: number | undefined;
|
|
1538
1405
|
/**
|
|
1539
|
-
* <p>
|
|
1540
|
-
* The token to retrieve the next set of results.
|
|
1541
|
-
* </p>
|
|
1406
|
+
* <p> The token to retrieve the next set of results. </p>
|
|
1542
1407
|
* @public
|
|
1543
1408
|
*/
|
|
1544
1409
|
nextToken?: string | undefined;
|
|
1545
1410
|
}
|
|
1546
1411
|
/**
|
|
1547
|
-
* <p>
|
|
1548
|
-
* Supplemental TRN details.
|
|
1549
|
-
* </p>
|
|
1412
|
+
* <p> Supplemental TRN details. </p>
|
|
1550
1413
|
* @public
|
|
1551
1414
|
*/
|
|
1552
1415
|
export interface SupplementalTaxRegistration {
|
|
1553
1416
|
/**
|
|
1554
|
-
* <p>
|
|
1555
|
-
* The supplemental TRN unique identifier.
|
|
1556
|
-
* </p>
|
|
1417
|
+
* <p> The supplemental TRN unique identifier. </p>
|
|
1557
1418
|
* @public
|
|
1558
1419
|
*/
|
|
1559
1420
|
registrationId: string | undefined;
|
|
1560
1421
|
/**
|
|
1561
|
-
* <p>
|
|
1562
|
-
* Type of supplemental TRN. Currently, this can only be VAT.
|
|
1563
|
-
* </p>
|
|
1422
|
+
* <p> Type of supplemental TRN. Currently, this can only be VAT. </p>
|
|
1564
1423
|
* @public
|
|
1565
1424
|
*/
|
|
1566
1425
|
registrationType: SupplementalTaxRegistrationType | undefined;
|
|
1567
1426
|
/**
|
|
1568
|
-
* <p>
|
|
1569
|
-
* The legal name associated with your TRN registration.
|
|
1570
|
-
* </p>
|
|
1427
|
+
* <p> The legal name associated with your TRN registration. </p>
|
|
1571
1428
|
* @public
|
|
1572
1429
|
*/
|
|
1573
1430
|
legalName: string | undefined;
|
|
@@ -1577,16 +1434,12 @@ export interface SupplementalTaxRegistration {
|
|
|
1577
1434
|
*/
|
|
1578
1435
|
address: Address | undefined;
|
|
1579
1436
|
/**
|
|
1580
|
-
* <p>
|
|
1581
|
-
* Unique authority ID for the supplemental TRN.
|
|
1582
|
-
* </p>
|
|
1437
|
+
* <p> Unique authority ID for the supplemental TRN. </p>
|
|
1583
1438
|
* @public
|
|
1584
1439
|
*/
|
|
1585
1440
|
authorityId: string | undefined;
|
|
1586
1441
|
/**
|
|
1587
|
-
* <p>
|
|
1588
|
-
* The status of your TRN.
|
|
1589
|
-
* </p>
|
|
1442
|
+
* <p> The status of your TRN. </p>
|
|
1590
1443
|
* @public
|
|
1591
1444
|
*/
|
|
1592
1445
|
status: TaxRegistrationStatus | undefined;
|
|
@@ -1596,16 +1449,12 @@ export interface SupplementalTaxRegistration {
|
|
|
1596
1449
|
*/
|
|
1597
1450
|
export interface ListSupplementalTaxRegistrationsResponse {
|
|
1598
1451
|
/**
|
|
1599
|
-
* <p>
|
|
1600
|
-
* The list of supplemental tax registrations.
|
|
1601
|
-
* </p>
|
|
1452
|
+
* <p> The list of supplemental tax registrations. </p>
|
|
1602
1453
|
* @public
|
|
1603
1454
|
*/
|
|
1604
1455
|
taxRegistrations: SupplementalTaxRegistration[] | undefined;
|
|
1605
1456
|
/**
|
|
1606
|
-
* <p>
|
|
1607
|
-
* The token to retrieve the next set of results.
|
|
1608
|
-
* </p>
|
|
1457
|
+
* <p> The token to retrieve the next set of results. </p>
|
|
1609
1458
|
* @public
|
|
1610
1459
|
*/
|
|
1611
1460
|
nextToken?: string | undefined;
|
|
@@ -1615,8 +1464,7 @@ export interface ListSupplementalTaxRegistrationsResponse {
|
|
|
1615
1464
|
*/
|
|
1616
1465
|
export interface ListTaxExemptionsRequest {
|
|
1617
1466
|
/**
|
|
1618
|
-
* <p>The number of results you want in one response.
|
|
1619
|
-
* </p>
|
|
1467
|
+
* <p>The number of results you want in one response. </p>
|
|
1620
1468
|
* @public
|
|
1621
1469
|
*/
|
|
1622
1470
|
maxResults?: number | undefined;
|
|
@@ -1636,8 +1484,7 @@ export interface ListTaxExemptionsResponse {
|
|
|
1636
1484
|
*/
|
|
1637
1485
|
nextToken?: string | undefined;
|
|
1638
1486
|
/**
|
|
1639
|
-
* <p>The tax exemption details map of <code>accountId</code> and tax exemption details.
|
|
1640
|
-
* </p>
|
|
1487
|
+
* <p>The tax exemption details map of <code>accountId</code> and tax exemption details. </p>
|
|
1641
1488
|
* @public
|
|
1642
1489
|
*/
|
|
1643
1490
|
taxExemptionDetailsMap?: Record<string, TaxExemptionDetails> | undefined;
|
|
@@ -1662,8 +1509,7 @@ export interface ListTaxRegistrationsRequest {
|
|
|
1662
1509
|
*/
|
|
1663
1510
|
export interface ListTaxRegistrationsResponse {
|
|
1664
1511
|
/**
|
|
1665
|
-
* <p>The list of account details. This contains account Ids and TRN Information for each of the
|
|
1666
|
-
* linked accounts. </p>
|
|
1512
|
+
* <p>The list of account details. This contains account Ids and TRN Information for each of the linked accounts. </p>
|
|
1667
1513
|
* @public
|
|
1668
1514
|
*/
|
|
1669
1515
|
accountDetails: AccountDetails[] | undefined;
|
|
@@ -1674,30 +1520,22 @@ export interface ListTaxRegistrationsResponse {
|
|
|
1674
1520
|
nextToken?: string | undefined;
|
|
1675
1521
|
}
|
|
1676
1522
|
/**
|
|
1677
|
-
* <p>
|
|
1678
|
-
* The supplemental TRN information to provide when adding or updating a supplemental TRN.
|
|
1679
|
-
* </p>
|
|
1523
|
+
* <p> The supplemental TRN information to provide when adding or updating a supplemental TRN. </p>
|
|
1680
1524
|
* @public
|
|
1681
1525
|
*/
|
|
1682
1526
|
export interface SupplementalTaxRegistrationEntry {
|
|
1683
1527
|
/**
|
|
1684
|
-
* <p>
|
|
1685
|
-
* The supplemental TRN unique identifier.
|
|
1686
|
-
* </p>
|
|
1528
|
+
* <p> The supplemental TRN unique identifier. </p>
|
|
1687
1529
|
* @public
|
|
1688
1530
|
*/
|
|
1689
1531
|
registrationId: string | undefined;
|
|
1690
1532
|
/**
|
|
1691
|
-
* <p>
|
|
1692
|
-
* Type of supplemental TRN. Currently, this can only be VAT.
|
|
1693
|
-
* </p>
|
|
1533
|
+
* <p> Type of supplemental TRN. Currently, this can only be VAT. </p>
|
|
1694
1534
|
* @public
|
|
1695
1535
|
*/
|
|
1696
1536
|
registrationType: SupplementalTaxRegistrationType | undefined;
|
|
1697
1537
|
/**
|
|
1698
|
-
* <p>
|
|
1699
|
-
* The legal name associated with your TRN registration.
|
|
1700
|
-
* </p>
|
|
1538
|
+
* <p> The legal name associated with your TRN registration. </p>
|
|
1701
1539
|
* @public
|
|
1702
1540
|
*/
|
|
1703
1541
|
legalName: string | undefined;
|
|
@@ -1712,9 +1550,7 @@ export interface SupplementalTaxRegistrationEntry {
|
|
|
1712
1550
|
*/
|
|
1713
1551
|
export interface PutSupplementalTaxRegistrationRequest {
|
|
1714
1552
|
/**
|
|
1715
|
-
* <p>
|
|
1716
|
-
* The supplemental TRN information that will be stored for the caller account ID.
|
|
1717
|
-
* </p>
|
|
1553
|
+
* <p> The supplemental TRN information that will be stored for the caller account ID. </p>
|
|
1718
1554
|
* @public
|
|
1719
1555
|
*/
|
|
1720
1556
|
taxRegistrationEntry: SupplementalTaxRegistrationEntry | undefined;
|
|
@@ -1724,16 +1560,12 @@ export interface PutSupplementalTaxRegistrationRequest {
|
|
|
1724
1560
|
*/
|
|
1725
1561
|
export interface PutSupplementalTaxRegistrationResponse {
|
|
1726
1562
|
/**
|
|
1727
|
-
* <p>
|
|
1728
|
-
* Unique authority ID for the supplemental TRN information that was stored.
|
|
1729
|
-
* </p>
|
|
1563
|
+
* <p> Unique authority ID for the supplemental TRN information that was stored. </p>
|
|
1730
1564
|
* @public
|
|
1731
1565
|
*/
|
|
1732
1566
|
authorityId: string | undefined;
|
|
1733
1567
|
/**
|
|
1734
|
-
* <p>
|
|
1735
|
-
* The status of the supplemental TRN stored in the system after processing. Based on the validation occurring on the TRN, the status can be <code>Verified</code>, <code>Pending</code>, <code>Rejected</code>, or <code>Deleted</code>.
|
|
1736
|
-
* </p>
|
|
1568
|
+
* <p> The status of the supplemental TRN stored in the system after processing. Based on the validation occurring on the TRN, the status can be <code>Verified</code>, <code>Pending</code>, <code>Rejected</code>, or <code>Deleted</code>. </p>
|
|
1737
1569
|
* @public
|
|
1738
1570
|
*/
|
|
1739
1571
|
status: TaxRegistrationStatus | undefined;
|
|
@@ -1743,27 +1575,22 @@ export interface PutSupplementalTaxRegistrationResponse {
|
|
|
1743
1575
|
*/
|
|
1744
1576
|
export interface PutTaxExemptionRequest {
|
|
1745
1577
|
/**
|
|
1746
|
-
* <p>
|
|
1747
|
-
* The list of unique account identifiers.
|
|
1748
|
-
* </p>
|
|
1578
|
+
* <p> The list of unique account identifiers. </p>
|
|
1749
1579
|
* @public
|
|
1750
1580
|
*/
|
|
1751
1581
|
accountIds: string[] | undefined;
|
|
1752
1582
|
/**
|
|
1753
|
-
* <p>The address domain associate with the tax information.
|
|
1754
|
-
* </p>
|
|
1583
|
+
* <p>The address domain associate with the tax information. </p>
|
|
1755
1584
|
* @public
|
|
1756
1585
|
*/
|
|
1757
1586
|
authority: Authority | undefined;
|
|
1758
1587
|
/**
|
|
1759
|
-
* <p>The exemption type. Use the supported tax exemption type description.
|
|
1760
|
-
* </p>
|
|
1588
|
+
* <p>The exemption type. Use the supported tax exemption type description. </p>
|
|
1761
1589
|
* @public
|
|
1762
1590
|
*/
|
|
1763
1591
|
exemptionType: string | undefined;
|
|
1764
1592
|
/**
|
|
1765
|
-
* <p>The exemption certificate.
|
|
1766
|
-
* </p>
|
|
1593
|
+
* <p>The exemption certificate. </p>
|
|
1767
1594
|
* @public
|
|
1768
1595
|
*/
|
|
1769
1596
|
exemptionCertificate: ExemptionCertificate | undefined;
|
|
@@ -1773,8 +1600,7 @@ export interface PutTaxExemptionRequest {
|
|
|
1773
1600
|
*/
|
|
1774
1601
|
export interface PutTaxExemptionResponse {
|
|
1775
1602
|
/**
|
|
1776
|
-
* <p>The customer support case ID.
|
|
1777
|
-
* </p>
|
|
1603
|
+
* <p>The customer support case ID. </p>
|
|
1778
1604
|
* @public
|
|
1779
1605
|
*/
|
|
1780
1606
|
caseId?: string | undefined;
|
|
@@ -1784,8 +1610,7 @@ export interface PutTaxExemptionResponse {
|
|
|
1784
1610
|
*/
|
|
1785
1611
|
export interface PutTaxInheritanceRequest {
|
|
1786
1612
|
/**
|
|
1787
|
-
* <p>The tax inheritance status.
|
|
1788
|
-
* </p>
|
|
1613
|
+
* <p>The tax inheritance status. </p>
|
|
1789
1614
|
* @public
|
|
1790
1615
|
*/
|
|
1791
1616
|
heritageStatus?: HeritageStatus | undefined;
|
|
@@ -1805,8 +1630,7 @@ export interface PutTaxRegistrationRequest {
|
|
|
1805
1630
|
*/
|
|
1806
1631
|
accountId?: string | undefined;
|
|
1807
1632
|
/**
|
|
1808
|
-
* <p> Your TRN information that will be stored to the account mentioned in
|
|
1809
|
-
* <code>accountId</code>. </p>
|
|
1633
|
+
* <p> Your TRN information that will be stored to the account mentioned in <code>accountId</code>. </p>
|
|
1810
1634
|
* @public
|
|
1811
1635
|
*/
|
|
1812
1636
|
taxRegistrationEntry: TaxRegistrationEntry | undefined;
|
|
@@ -1816,9 +1640,7 @@ export interface PutTaxRegistrationRequest {
|
|
|
1816
1640
|
*/
|
|
1817
1641
|
export interface PutTaxRegistrationResponse {
|
|
1818
1642
|
/**
|
|
1819
|
-
* <p>The status of your TRN stored in the system after processing. Based on the validation
|
|
1820
|
-
* occurring on the TRN, the status can be <code>Verified</code>, <code>Pending</code> or
|
|
1821
|
-
* <code>Rejected</code>. </p>
|
|
1643
|
+
* <p>The status of your TRN stored in the system after processing. Based on the validation occurring on the TRN, the status can be <code>Verified</code>, <code>Pending</code> or <code>Rejected</code>. </p>
|
|
1822
1644
|
* @public
|
|
1823
1645
|
*/
|
|
1824
1646
|
status?: TaxRegistrationStatus | undefined;
|