-
Notifications
You must be signed in to change notification settings - Fork 586
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
awstools
committed
Dec 3, 2024
1 parent
25460cc
commit 868d4b0
Showing
49 changed files
with
1,044 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,6 +100,38 @@ export interface BatchGetInvoiceProfileCommandOutput extends BatchGetInvoiceProf | |
* <p>Base exception class for all service exceptions from Invoicing service.</p> | ||
* | ||
* @public | ||
* @example BatchGetInvoiceProfile | ||
* ```javascript | ||
* // | ||
* const input = { | ||
* "AccountIds": [ | ||
* "111111111111" | ||
* ] | ||
* }; | ||
* const command = new BatchGetInvoiceProfileCommand(input); | ||
* const response = await client.send(command); | ||
* /* response == | ||
* { | ||
* "Profiles": [ | ||
* { | ||
* "AccountId": "111111111111", | ||
* "Issuer": "Test", | ||
* "ReceiverAddress": { | ||
* "AddressLine1": "Test", | ||
* "City": "Test", | ||
* "CountryCode": "LU", | ||
* "PostalCode": "Test", | ||
* "StateOrRegion": "Test" | ||
* }, | ||
* "ReceiverEmail": "[email protected]", | ||
* "ReceiverName": "TestAccount" | ||
* } | ||
* ] | ||
* } | ||
* *\/ | ||
* // example id: example-1 | ||
* ``` | ||
* | ||
*/ | ||
export class BatchGetInvoiceProfileCommand extends $Command | ||
.classBuilder< | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.