You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/accounting/BatchPayment.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,9 @@ Name | Type | Description | Notes
17
17
**payments** | [**Array<Payment>**](Payment.md) | An array of payments | [optional]
18
18
**type** | **String** | PAYBATCH for bill payments or RECBATCH for sales invoice payments (read-only) | [optional]
19
19
**status** | **String** | AUTHORISED or DELETED (read-only). New batch payments will have a status of AUTHORISED. It is not possible to delete batch payments via the API. | [optional]
20
-
**total_amount** | **String** | The total of the payments that make up the batch (read-only) | [optional]
20
+
**total_amount** | **BigDecimal** | The total of the payments that make up the batch (read-only) | [optional]
21
21
**updated_date_utc** | **DateTime** | UTC timestamp of last update to the payment | [optional]
22
-
**is_reconciled** | **String** | Booelan that tells you if the batch payment has been reconciled (read-only) | [optional]
22
+
**is_reconciled** | **Boolean** | Booelan that tells you if the batch payment has been reconciled (read-only) | [optional]
23
23
**validation_errors** | [**Array<ValidationError>**](ValidationError.md) | Displays array of validation error messages from the API | [optional]
Copy file name to clipboardExpand all lines: docs/projects/ProjectApi.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -684,7 +684,7 @@ opts = {
684
684
685
685
page_size: 10, # Integer | Optional, it is set to 50 by default. The number of items to return per page in a paged response - Must be a number between 1 and 500.
686
686
687
-
task_ids: 'task_ids_example', # String | taskIdsSearch for all tasks that match a comma separated list of taskIds, i.e. GET https://.../tasks?taskIds={taskID},{taskID}
687
+
task_ids: 'task_ids_example', # String | Search for all tasks that match a comma separated list of taskIds, i.e. GET https://.../tasks?taskIds={taskID},{taskID}
@@ -707,7 +707,7 @@ Name | Type | Description | Notes
707
707
**project_id** | [**String**](.md)| You can specify an individual project by appending the projectId to the endpoint |
708
708
**page** | **Integer**| Set to 1 by default. The requested number of the page in paged response - Must be a number greater than 0. | [optional]
709
709
**page_size** | **Integer**| Optional, it is set to 50 by default. The number of items to return per page in a paged response - Must be a number between 1 and 500. | [optional]
710
-
**task_ids** | **String**| taskIdsSearch for all tasks that match a comma separated list of taskIds, i.e. GET https://.../tasks?taskIds={taskID},{taskID} | [optional]
710
+
**task_ids** | **String**| Search for all tasks that match a comma separated list of taskIds, i.e. GET https://.../tasks?taskIds={taskID},{taskID} | [optional]
0 commit comments