-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'create-components-price-points-tests' of github.com:max…
…io-com/ab-java-sdk into create-components-price-points-tests
- Loading branch information
Showing
26 changed files
with
1,397 additions
and
394 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
# Invoice Avatax Details | ||
|
||
## Structure | ||
|
||
`InvoiceAvataxDetails` | ||
|
||
## Fields | ||
|
||
| Name | Type | Tags | Description | Getter | Setter | | ||
| --- | --- | --- | --- | --- | --- | | ||
| `Id` | `Long` | Optional | - | Long getId() | setId(Long id) | | ||
| `Status` | `String` | Optional | - | String getStatus() | setStatus(String status) | | ||
| `DocumentCode` | `String` | Optional | - | String getDocumentCode() | setDocumentCode(String documentCode) | | ||
| `CommitDate` | `ZonedDateTime` | Optional | - | ZonedDateTime getCommitDate() | setCommitDate(ZonedDateTime commitDate) | | ||
| `ModifyDate` | `ZonedDateTime` | Optional | - | ZonedDateTime getModifyDate() | setModifyDate(ZonedDateTime modifyDate) | | ||
|
||
## Example (as JSON) | ||
|
||
```json | ||
{ | ||
"id": 112, | ||
"status": "status2", | ||
"document_code": "document_code0", | ||
"commit_date": "2016-03-13T12:52:32.123Z", | ||
"modify_date": "2016-03-13T12:52:32.123Z" | ||
} | ||
``` | ||
|
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
# Invoice Debit | ||
|
||
## Structure | ||
|
||
`InvoiceDebit` | ||
|
||
## Fields | ||
|
||
| Name | Type | Tags | Description | Getter | Setter | | ||
| --- | --- | --- | --- | --- | --- | | ||
| `Uid` | `String` | Optional | - | String getUid() | setUid(String uid) | | ||
| `DebitNoteNumber` | `String` | Optional | - | String getDebitNoteNumber() | setDebitNoteNumber(String debitNoteNumber) | | ||
| `DebitNoteUid` | `String` | Optional | - | String getDebitNoteUid() | setDebitNoteUid(String debitNoteUid) | | ||
| `Role` | [`DebitNoteRole`](../../doc/models/debit-note-role.md) | Optional | The role of the debit note. | DebitNoteRole getRole() | setRole(DebitNoteRole role) | | ||
| `TransactionTime` | `ZonedDateTime` | Optional | - | ZonedDateTime getTransactionTime() | setTransactionTime(ZonedDateTime transactionTime) | | ||
| `Memo` | `String` | Optional | - | String getMemo() | setMemo(String memo) | | ||
| `OriginalAmount` | `String` | Optional | - | String getOriginalAmount() | setOriginalAmount(String originalAmount) | | ||
| `AppliedAmount` | `String` | Optional | - | String getAppliedAmount() | setAppliedAmount(String appliedAmount) | | ||
|
||
## Example (as JSON) | ||
|
||
```json | ||
{ | ||
"uid": "uid2", | ||
"debit_note_number": "debit_note_number2", | ||
"debit_note_uid": "debit_note_uid8", | ||
"role": "chargeback", | ||
"transaction_time": "2016-03-13T12:52:32.123Z" | ||
} | ||
``` | ||
|
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.