Skip to content

Commit

Permalink
regen from OAS 2.33.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RettBehrens committed Nov 29, 2022
1 parent 08dc29e commit 43a91ac
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/accounting/BatchPayment.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Name | Type | Description | Notes
**payments** | [**Array<Payment>**](Payment.md) | An array of payments | [optional]
**type** | **String** | PAYBATCH for bill payments or RECBATCH for sales invoice payments (read-only) | [optional]
**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]
**total_amount** | **String** | The total of the payments that make up the batch (read-only) | [optional]
**total_amount** | **BigDecimal** | The total of the payments that make up the batch (read-only) | [optional]
**updated_date_utc** | **DateTime** | UTC timestamp of last update to the payment | [optional]
**is_reconciled** | **String** | Booelan that tells you if the batch payment has been reconciled (read-only) | [optional]
**is_reconciled** | **Boolean** | Booelan that tells you if the batch payment has been reconciled (read-only) | [optional]
**validation_errors** | [**Array<ValidationError>**](ValidationError.md) | Displays array of validation error messages from the API | [optional]

## Code Sample
Expand Down
8 changes: 5 additions & 3 deletions docs/accounting/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1641,9 +1641,11 @@
"enum" : [ "AUTHORISED", "DELETED" ]
},
"TotalAmount" : {
"type" : "string",
"type" : "number",
"description" : "The total of the payments that make up the batch (read-only)",
"readOnly" : true
"format" : "double",
"readOnly" : true,
"x-is-money" : true
},
"UpdatedDateUTC" : {
"type" : "string",
Expand All @@ -1653,7 +1655,7 @@
"x-is-msdate-time" : true
},
"IsReconciled" : {
"type" : "string",
"type" : "boolean",
"description" : "Booelan that tells you if the batch payment has been reconciled (read-only)",
"readOnly" : true
},
Expand Down
4 changes: 2 additions & 2 deletions lib/xero-ruby/models/accounting/batch_payment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ def self.openapi_types
:'payments' => :'Array<Payment>',
:'type' => :'String',
:'status' => :'String',
:'total_amount' => :'String',
:'total_amount' => :'BigDecimal',
:'updated_date_utc' => :'DateTime',
:'is_reconciled' => :'String',
:'is_reconciled' => :'Boolean',
:'validation_errors' => :'Array<ValidationError>'
}
end
Expand Down
2 changes: 1 addition & 1 deletion lib/xero-ruby/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Generated by: https://openapi-generator.tech
OpenAPI Generator version: 4.3.1
The version of the XeroOpenAPI document: 2.33.0
The version of the XeroOpenAPI document: 2.33.1
=end

module XeroRuby
Expand Down

0 comments on commit 43a91ac

Please sign in to comment.