salix/modules/client/back/models/pay-method.json

36 lines
718 B
JSON

{
"name": "PayMethod",
"base": "VnModel",
"options": {
"mysql": {
"table": "payMethod"
}
},
"properties": {
"id": {
"type": "Number",
"id": true,
"description": "Identifier"
},
"code": {
"type": "string"
},
"name": {
"type": "string",
"required": true
},
"graceDays": {
"type": "string"
},
"outstandingDebt": {
"type": "Number"
},
"isIbanRequiredForClients": {
"type": "boolean"
},
"isIbanRequiredForSuppliers": {
"type": "boolean"
}
}
}