Skip to content

Commit

Permalink
Merged PR 83886: Add new currencies field
Browse files Browse the repository at this point in the history
  • Loading branch information
Codat Pipeline Bot committed Nov 5, 2024
1 parent 3ad9886 commit 0c3a888
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
11 changes: 9 additions & 2 deletions json/Codat-Bank-Feeds.json
Original file line number Diff line number Diff line change
Expand Up @@ -5148,12 +5148,19 @@
"planType": {
"type": "string",
"nullable": true,
"description": "Accounting software subscription type such as Trial, Demo, Standard"
"description": "Accounting software subscription type such as Trial, Demo, Standard."
},
"multicurrencyEnabled": {
"type": "boolean",
"description": "Boolean showing if the organisation has multicurrency enabled."
},
"currencies": {
"type": "array",
"nullable": true,
"description": "Boolean showing if the organisation has multicurrency enabled"
"description": "Array of enabled currencies for the linked company.",
"items": {
"type": "string"
}
}
}
},
Expand Down
9 changes: 7 additions & 2 deletions yaml/Codat-Bank-Feeds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3595,11 +3595,16 @@ components:
planType:
type: string
nullable: true
description: 'Accounting software subscription type such as Trial, Demo, Standard'
description: 'Accounting software subscription type such as Trial, Demo, Standard.'
multicurrencyEnabled:
type: boolean
description: Boolean showing if the organisation has multicurrency enabled.
currencies:
type: array
nullable: true
description: Boolean showing if the organisation has multicurrency enabled
description: Array of enabled currencies for the linked company.
items:
type: string
CompanyRequestBody:
title: Create company request
x-internal: true
Expand Down

0 comments on commit 0c3a888

Please sign in to comment.