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": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "number",
|
2019-03-27 07:48:13 +00:00
|
|
|
"id": true,
|
|
|
|
"description": "Identifier"
|
|
|
|
},
|
|
|
|
"sender": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string",
|
2019-03-27 07:48:13 +00:00
|
|
|
"required": true
|
|
|
|
},
|
|
|
|
"destination": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string",
|
2019-03-27 07:48:13 +00:00
|
|
|
"required": true
|
|
|
|
},
|
|
|
|
"message": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string",
|
2019-03-27 07:48:13 +00:00
|
|
|
"required": true
|
|
|
|
},
|
|
|
|
"statusCode": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "number"
|
2019-03-27 07:48:13 +00:00
|
|
|
},
|
|
|
|
"status": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string"
|
2019-03-27 07:48:13 +00:00
|
|
|
},
|
|
|
|
"created": {
|
|
|
|
"type": "Date"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"relations": {
|
|
|
|
"sender": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "Account",
|
|
|
|
"foreignKey": "senderFk"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|