salix/modules/client/back/models/sms.json

46 lines
927 B
JSON
Raw Normal View History

2019-03-27 07:48:13 +00:00
{
"name": "Sms",
"description": "Sms sent to client",
2020-01-15 12:27:14 +00:00
"base": "VnModel",
2019-03-27 07:48:13 +00:00
"options": {
"mysql": {
"table": "sms"
}
},
"properties": {
"id": {
"type": "Number",
"id": true,
"description": "Identifier"
},
"sender": {
"type": "String",
"required": true
},
"destination": {
"type": "String",
"required": true
},
"message": {
"type": "String",
"required": true
},
"statusCode": {
2022-01-10 14:14:05 +00:00
"type": "Number"
2019-03-27 07:48:13 +00:00
},
"status": {
"type": "String"
},
"created": {
"type": "Date"
}
},
"relations": {
"sender": {
"type": "belongsTo",
"model": "Account",
"foreignKey": "senderFk"
}
}
}