-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into DE-573-e2e-invoice-proforma
- Loading branch information
Showing
44 changed files
with
610 additions
and
434 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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
# List Proforma Invoices Meta | ||
|
||
## Structure | ||
|
||
`ListProformaInvoicesMeta` | ||
|
||
## Fields | ||
|
||
| Name | Type | Tags | Description | | ||
| --- | --- | --- | --- | | ||
| `totalCount` | `number \| undefined` | Optional | - | | ||
| `currentPage` | `number \| undefined` | Optional | - | | ||
| `totalPages` | `number \| undefined` | Optional | - | | ||
| `statusCode` | `number \| undefined` | Optional | - | | ||
|
||
## Example (as JSON) | ||
|
||
```json | ||
{ | ||
"total_count": 226, | ||
"current_page": 202, | ||
"total_pages": 214, | ||
"status_code": 244 | ||
} | ||
``` | ||
|
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,50 @@ | ||
|
||
# List Proforma Invoices Response | ||
|
||
## Structure | ||
|
||
`ListProformaInvoicesResponse` | ||
|
||
## Fields | ||
|
||
| Name | Type | Tags | Description | | ||
| --- | --- | --- | --- | | ||
| `proformaInvoices` | [`ProformaInvoice[] \| undefined`](../../doc/models/proforma-invoice.md) | Optional | - | | ||
| `meta` | [`ListProformaInvoicesMeta \| undefined`](../../doc/models/list-proforma-invoices-meta.md) | Optional | - | | ||
|
||
## Example (as JSON) | ||
|
||
```json | ||
{ | ||
"proforma_invoices": [ | ||
{ | ||
"uid": "uid0", | ||
"site_id": 140, | ||
"customer_id": 252, | ||
"subscription_id": 68, | ||
"number": 56 | ||
}, | ||
{ | ||
"uid": "uid0", | ||
"site_id": 140, | ||
"customer_id": 252, | ||
"subscription_id": 68, | ||
"number": 56 | ||
}, | ||
{ | ||
"uid": "uid0", | ||
"site_id": 140, | ||
"customer_id": 252, | ||
"subscription_id": 68, | ||
"number": 56 | ||
} | ||
], | ||
"meta": { | ||
"total_count": 150, | ||
"current_page": 126, | ||
"total_pages": 138, | ||
"status_code": 168 | ||
} | ||
} | ||
``` | ||
|
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.