salix/services/loopback/common/models/pay-method.json

30 lines
457 B
JSON
Raw Normal View History

{
"name": "PayMethod",
2017-10-11 13:36:47 +00:00
"base": "VnModel",
"options": {
"mysql": {
"table": "payMethod"
}
},
"properties": {
"id": {
"type": "Number",
"id": true,
"description": "Identifier"
},
"name": {
"type": "string",
2017-01-12 10:02:22 +00:00
"required": true
2017-05-09 12:04:44 +00:00
},
"graceDays": {
"type": "string"
},
"outstandingDebt": {
"type": "Number"
},
"ibanRequired": {
"type": "boolean"
}
2017-10-11 13:36:47 +00:00
}
}