1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
)
// An object with your accountId and TRN information.
type AccountDetails struct {
// List of unique account identifiers.
AccountId *string
// The meta data information associated with the account.
AccountMetaData *AccountMetaData
// Tax inheritance information associated with the account.
TaxInheritanceDetails *TaxInheritanceDetails
// 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).
TaxRegistration *TaxRegistrationWithJurisdiction
noSmithyDocumentSerde
}
// The meta data information associated with the account.
type AccountMetaData struct {
// The Amazon Web Services accounts name.
AccountName *string
// The details of the address associated with the TRN information.
Address *Address
// Address roles associated with the account containing country code information.
AddressRoleMap map[string]Jurisdiction
// The type of address associated with the legal profile.
AddressType AddressRoleType
// Seller information associated with the account.
Seller *string
noSmithyDocumentSerde
}
// 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.
//
// You can only specify one of the following parameters and the value can't be
// empty.
//
// 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 canadaAdditionalInfo parameter.
type AdditionalInfoRequest struct {
// Additional tax information associated with your TRN in Canada.
CanadaAdditionalInfo *CanadaAdditionalInfo
// Additional tax information to specify for a TRN in Estonia.
EstoniaAdditionalInfo *EstoniaAdditionalInfo
// Additional tax information to specify for a TRN in Georgia.
GeorgiaAdditionalInfo *GeorgiaAdditionalInfo
// Additional tax information to specify for a TRN in Israel.
IsraelAdditionalInfo *IsraelAdditionalInfo
// Additional tax information to specify for a TRN in Italy.
ItalyAdditionalInfo *ItalyAdditionalInfo
// Additional tax information to specify for a TRN in Kenya.
KenyaAdditionalInfo *KenyaAdditionalInfo
// Additional tax information to specify for a TRN in Malaysia.
MalaysiaAdditionalInfo *MalaysiaAdditionalInfo
// Additional tax information associated with your TRN in Poland.
PolandAdditionalInfo *PolandAdditionalInfo
// Additional tax information to specify for a TRN in Romania.
RomaniaAdditionalInfo *RomaniaAdditionalInfo
// Additional tax information associated with your TRN in Saudi Arabia.
SaudiArabiaAdditionalInfo *SaudiArabiaAdditionalInfo
// Additional tax information to specify for a TRN in South Korea.
SouthKoreaAdditionalInfo *SouthKoreaAdditionalInfo
// Additional tax information to specify for a TRN in Spain.
SpainAdditionalInfo *SpainAdditionalInfo
// Additional tax information to specify for a TRN in Turkey.
TurkeyAdditionalInfo *TurkeyAdditionalInfo
// Additional tax information associated with your TRN in Ukraine.
UkraineAdditionalInfo *UkraineAdditionalInfo
noSmithyDocumentSerde
}
// 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.
type AdditionalInfoResponse struct {
// 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.
BrazilAdditionalInfo *BrazilAdditionalInfo
// Additional tax information associated with your TRN in Canada.
CanadaAdditionalInfo *CanadaAdditionalInfo
// Additional tax information associated with your TRN in Estonia.
EstoniaAdditionalInfo *EstoniaAdditionalInfo
// Additional tax information associated with your TRN in Georgia.
GeorgiaAdditionalInfo *GeorgiaAdditionalInfo
// Additional tax information in India.
IndiaAdditionalInfo *IndiaAdditionalInfo
// Additional tax information associated with your TRN in Israel.
IsraelAdditionalInfo *IsraelAdditionalInfo
// Additional tax information associated with your TRN in Italy.
ItalyAdditionalInfo *ItalyAdditionalInfo
// Additional tax information associated with your TRN in Kenya.
KenyaAdditionalInfo *KenyaAdditionalInfo
// Additional tax information associated with your TRN in Malaysia.
MalaysiaAdditionalInfo *MalaysiaAdditionalInfo
// Additional tax information associated with your TRN in Poland.
PolandAdditionalInfo *PolandAdditionalInfo
// Additional tax information to specify for a TRN in Romania.
RomaniaAdditionalInfo *RomaniaAdditionalInfo
// Additional tax information associated with your TRN in Saudi Arabia.
SaudiArabiaAdditionalInfo *SaudiArabiaAdditionalInfo
// Additional tax information associated with your TRN in South Korea.
SouthKoreaAdditionalInfo *SouthKoreaAdditionalInfo
// Additional tax information associated with your TRN in Spain.
SpainAdditionalInfo *SpainAdditionalInfo
// Additional tax information associated with your TRN in Turkey.
TurkeyAdditionalInfo *TurkeyAdditionalInfo
// Additional tax information associated with your TRN in Ukraine.
UkraineAdditionalInfo *UkraineAdditionalInfo
noSmithyDocumentSerde
}
// The details of the address associated with the TRN information.
type Address struct {
// The first line of the address.
//
// This member is required.
AddressLine1 *string
// The city that the address is in.
//
// This member is required.
City *string
// The country code for the country that the address is in.
//
// This member is required.
CountryCode *string
// The postal code associated with the address.
//
// This member is required.
PostalCode *string
// The second line of the address, if applicable.
AddressLine2 *string
// The third line of the address, if applicable. Currently, the Tax Settings API
// accepts the addressLine3 parameter only for Saudi Arabia. When you specify a
// TRN in Saudi Arabia, you must enter the addressLine3 and specify the building
// number for the address. For example, you might enter 1234 .
AddressLine3 *string
// The district or county the address is located.
//
// For addresses in Brazil, this parameter uses the name of the neighborhood. When
// you set a TRN in Brazil, use districtOrCounty for the neighborhood name.
DistrictOrCounty *string
// The state, region, or province that the address is located.
//
// If this is required for tax settings, use the same name as shown on the Tax
// Settings page.
StateOrRegion *string
noSmithyDocumentSerde
}
// The error object for representing failures in the BatchDeleteTaxRegistration
//
// operation.
type BatchDeleteTaxRegistrationError struct {
// The unique account identifier for the account whose tax registration couldn't
// be deleted during the BatchDeleteTaxRegistration operation.
//
// This member is required.
AccountId *string
// The error message for an individual failure in the BatchDeleteTaxRegistration
// operation.
//
// This member is required.
Message *string
// The error code for an individual failure in BatchDeleteTaxRegistration
// operation.
Code *string
noSmithyDocumentSerde
}
// The error object for representing failures in the BatchPutTaxRegistration
//
// operation.
type BatchPutTaxRegistrationError struct {
// The unique account identifier for the account that the tax registration
// couldn't be added, or updated during the BatchPutTaxRegistration operation.
//
// This member is required.
AccountId *string
// The error message for an individual failure in the BatchPutTaxRegistration
// operation.
//
// This member is required.
Message *string
// The error code for an individual failure in the BatchPutTaxRegistration
// operation.
Code *string
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in Brazil.
type BrazilAdditionalInfo struct {
// The Cadastro de Contribuintes Mobiliários (CCM) code for your TRN in Brazil.
// This only applies for a CNPJ tax type for the São Paulo municipality.
CcmCode *string
// Legal nature of business, based on your TRN in Brazil. This only applies for a
// CNPJ tax type.
LegalNatureCode *string
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in Canada .
type CanadaAdditionalInfo struct {
// The Quebec Sales Tax ID number. Leave blank if you do not have a Quebec Sales
// Tax ID number.
CanadaQuebecSalesTaxNumber *string
// Manitoba Retail Sales Tax ID number. Customers purchasing Amazon Web 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 for resale.
CanadaRetailSalesTaxNumber *string
// The value for this parameter must be true if the provincialSalesTaxId value is
// provided for a TRN in British Columbia, Saskatchewan, or Manitoba provinces.
//
// 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 provincialSalesTaxId
// parameter from your request.
IsResellerAccount *bool
// The provincial sales tax ID for your TRN in Canada. This parameter can
// represent the following:
//
// - Provincial sales tax ID number for British Columbia and Saskatchewan
// provinces
//
// - Manitoba retail sales tax ID number for Manitoba province
//
// - Quebec sales tax ID number for Quebec province
//
// 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.
ProvincialSalesTaxId *string
noSmithyDocumentSerde
}
// The location of the Amazon S3 bucket that you specify to download your tax
// documents to.
type DestinationS3Location struct {
// The name of your Amazon S3 bucket that you specify to download your tax
// documents to.
//
// This member is required.
Bucket *string
// The Amazon S3 object prefix that you specify for your tax document file.
Prefix *string
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in Estonia.
type EstoniaAdditionalInfo struct {
// Registry commercial code (RCC) for your TRN in Estonia. This value is an
// eight-numeric string, such as 12345678 .
//
// This member is required.
RegistryCommercialCode *string
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in Georgia.
type GeorgiaAdditionalInfo struct {
// The legal person or physical person assigned to this TRN in Georgia.
//
// This member is required.
PersonType PersonType
noSmithyDocumentSerde
}
// Additional tax information in India.
type IndiaAdditionalInfo struct {
// India pan information associated with the account.
Pan *string
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in Israel.
type IsraelAdditionalInfo struct {
// Customer type for your TRN in Israel. The value can be Business or Individual .
// Use Business for entities such as not-for-profit and financial institutions.
//
// This member is required.
CustomerType IsraelCustomerType
// 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.
//
// This member is required.
DealerType IsraelDealerType
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in Italy.
type ItalyAdditionalInfo struct {
// The tender procedure identification code.
CigNumber *string
// 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).
CupNumber *string
// Additional tax information to specify for a TRN in Italy. Use
// CodiceDestinatario to receive your invoices via web service (API) or FTP.
SdiAccountId *string
// List of service tax codes for your TRN in Italy. You can use your customer tax
// code as part of a VAT Group.
TaxCode *string
noSmithyDocumentSerde
}
// 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.
type Jurisdiction struct {
// The country code of the jurisdiction.
//
// This member is required.
CountryCode *string
// The state, region, or province associated with the country of the
// jurisdiction, if applicable.
StateOrRegion *string
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in Kenya.
type KenyaAdditionalInfo struct {
// The legal person or physical person assigned to this TRN in Kenya.
//
// This member is required.
PersonType PersonType
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in Malaysia.
type MalaysiaAdditionalInfo struct {
// List of service tax codes for your TRN in Malaysia.
//
// This member is required.
ServiceTaxCodes []MalaysiaServiceTaxCode
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in Poland.
type PolandAdditionalInfo struct {
// The individual tax registration number (NIP). Individual NIP is valid for
// other taxes excluding VAT purposes.
IndividualRegistrationNumber *string
// True if your business is a member of a VAT group with a NIP active for VAT
// purposes. Otherwise, this is false.
IsGroupVatEnabled *bool
noSmithyDocumentSerde
}
// Additional tax information to specify for a TRN in Romania.
type RomaniaAdditionalInfo struct {
// The tax registration number type. The value can be TaxRegistrationNumber or
// LocalRegistrationNumber .
//
// This member is required.
TaxRegistrationNumberType TaxRegistrationNumberType
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in Saudi Arabia.
type SaudiArabiaAdditionalInfo struct {
// The tax registration number type.
TaxRegistrationNumberType SaudiArabiaTaxRegistrationNumberType
noSmithyDocumentSerde
}
// The Amazon S3 bucket in your account where your tax document is located.
type SourceS3Location struct {
// The name of your Amazon S3 bucket that your tax document is located.
//
// This member is required.
Bucket *string
// The object key of your tax document object in Amazon S3.
//
// This member is required.
Key *string
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in South Korea.
type SouthKoreaAdditionalInfo struct {
// The business legal name based on the most recently uploaded tax registration
// certificate.
//
// This member is required.
BusinessRepresentativeName *string
// Item of business based on the most recently uploaded tax registration
// certificate.
//
// This member is required.
ItemOfBusiness *string
// Line of business based on the most recently uploaded tax registration
// certificate.
//
// This member is required.
LineOfBusiness *string
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in Spain.
type SpainAdditionalInfo struct {
// The registration type in Spain.
//
// This member is required.
RegistrationType RegistrationType
noSmithyDocumentSerde
}
// The metadata for your tax document.
type TaxDocumentMetadata struct {
// The tax document access token, which contains information that the Tax Settings
// API uses to locate the tax document.
//
// If you update your tax registration, the existing taxDocumentAccessToken won't
// be valid. To get the latest token, call the GetTaxRegistration or
// ListTaxRegistrations API operation. This token is valid for 24 hours.
//
// This member is required.
TaxDocumentAccessToken *string
// The name of your tax document.
//
// This member is required.
TaxDocumentName *string
noSmithyDocumentSerde
}
// Tax inheritance information associated with the account.
type TaxInheritanceDetails struct {
// Tax inheritance reason information associated with the account.
InheritanceObtainedReason *string
// Tax inheritance parent account information associated with the account.
ParentEntityId *string
noSmithyDocumentSerde
}
// Your TRN information.
type TaxRegistration struct {
// The legal address associated with your TRN registration.
//
// This member is required.
LegalAddress *Address
// The legal name associated with your TRN registration.
//
// This member is required.
LegalName *string
// Your tax registration unique identifier.
//
// This member is required.
RegistrationId *string
// Type of your tax registration. This can be either VAT or GST .
//
// This member is required.
RegistrationType TaxRegistrationType
// The status of your TRN. This can be either Verified , Pending , Deleted , or
// Rejected .
//
// This member is required.
Status TaxRegistrationStatus
// Additional tax information associated with your TRN.
AdditionalTaxInformation *AdditionalInfoResponse
// The email address to receive VAT invoices.
CertifiedEmailId *string
// 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.
Sector Sector
// The metadata for your tax document.
TaxDocumentMetadatas []TaxDocumentMetadata
noSmithyDocumentSerde
}
// Tax registration document information.
type TaxRegistrationDocument struct {
// The Amazon S3 location where your tax registration document is stored.
//
// This member is required.
S3Location *SourceS3Location
noSmithyDocumentSerde
}
// The TRN information you provide when you add a new TRN, or update.
type TaxRegistrationEntry struct {
// Your tax registration unique identifier.
//
// This member is required.
RegistrationId *string
// Your tax registration type. This can be either VAT or GST .
//
// This member is required.
RegistrationType TaxRegistrationType
// 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 AdditionalInfoRequest.
AdditionalTaxInformation *AdditionalInfoRequest
// The email address to receive VAT invoices.
CertifiedEmailId *string
// The legal address associated with your TRN.
//
// If you're setting a TRN in Brazil for the CNPJ tax type, you don't need to
// specify the legal address.
//
// For TRNs in other countries and for CPF tax types Brazil, you must specify the
// legal address.
LegalAddress *Address
// The legal name associated with your TRN.
//
// 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.
LegalName *string
// 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.
Sector Sector
// 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.
//
// Don't specify this parameter to set a TRN in Brazil of the CNPJ tax type or to
// set a TRN for another country.
VerificationDetails *VerificationDetails
noSmithyDocumentSerde
}
// Your TRN information with jurisdiction details. This doesn't contain the full
// legal address associated with the TRN information.
type TaxRegistrationWithJurisdiction struct {
// The jurisdiction associated with your TRN information.
//
// This member is required.
Jurisdiction *Jurisdiction
// The legal name associated with your TRN information.
//
// This member is required.
LegalName *string
// Your tax registration unique identifier.
//
// This member is required.
RegistrationId *string
// The type of your tax registration. This can be either VAT or GST .
//
// This member is required.
RegistrationType TaxRegistrationType
// The status of your TRN. This can be either Verified , Pending , Deleted , or
// Rejected .
//
// This member is required.
Status TaxRegistrationStatus
// Additional tax information associated with your TRN.
AdditionalTaxInformation *AdditionalInfoResponse
// The email address to receive VAT invoices.
CertifiedEmailId *string
// 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.
Sector Sector
// The metadata for your tax document.
TaxDocumentMetadatas []TaxDocumentMetadata
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in Turkey.
type TurkeyAdditionalInfo struct {
// 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.
Industries Industries
// The Registered Electronic Mail (REM) that is used to send notarized
// communication. This parameter is optional for business-to-business (B2B) and
// business-to-government (B2G) customers. It's not required for
// business-to-consumer (B2C) customers.
KepEmailId *string
// Secondary tax ID (“harcama birimi VKN”si”). If one isn't provided, we will use
// your VKN as the secondary ID.
SecondaryTaxId *string
// The tax office where you're registered. You can enter this information as a
// string. The Tax Settings API will add this information to your invoice. This
// parameter is required for business-to-business (B2B) and business-to-government
// customers. It's not required for business-to-consumer (B2C) customers.
TaxOffice *string
noSmithyDocumentSerde
}
// Additional tax information associated with your TRN in Ukraine.
type UkraineAdditionalInfo struct {
// The tax registration type.
//
// This member is required.
UkraineTrnType UkraineTrnType
noSmithyDocumentSerde
}
// The information about the specified parameter in the request that caused an
// error.
type ValidationExceptionField struct {
// The name of the parameter that caused a ValidationException error.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// Required information to verify your TRN.
type VerificationDetails struct {
// Date of birth to verify your submitted TRN. Use the YYYY-MM-DD format.
DateOfBirth *string
// The tax registration document, which is required for specific countries such as
// Bangladesh, Kenya, South Korea and Spain.
TaxRegistrationDocuments []TaxRegistrationDocument
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|