A dictionary with fields
Field | Type | Description |
---|---|---|
cash | Bool | Allow cash payments |
cash_if_targetprice_isop | Bool | Allow cash payments when ordering with ISOP and it contains a product with a targetprice |
online | Bool | Allow online payments |
online_if_targetprice | Bool | Allow online payments if cart contains a product with a target-price |
banktransfer | Bool | Allow payment via banktransfer |
banktransfer_with_invoice | Bool | Allow payment via banktransfer using an invoice |
bank_account_numbers | [Dictionary] | Array of Dictionary |
{
"cash": false,
"cash_if_targetprice_isop": true,
"online": true,
"online_if_targetprice": false,
"banktransfer": false,
"banktransfer_with_invoice": false,
"bank_account_numbers": [
{
"name": "...",
"number": "..."
},
{
"name": "...",
"number": "..."
},
{
"name": "...",
"number": "..."
}
]
}