salix/modules/client/back/models/tpv-transaction.json

48 lines
951 B
JSON
Raw Normal View History

2019-04-02 12:36:49 +00:00
{
"name": "TpvTransaction",
"base": "VnModel",
"options": {
"mysql": {
"table": "hedera.tpvTransaction"
}
},
"properties": {
"id": {
2022-05-12 07:47:47 +00:00
"type": "number",
2019-04-02 12:36:49 +00:00
"id": true,
"description": "Identifier"
},
"merchantFk": {
2022-05-12 07:47:47 +00:00
"type": "number"
2019-04-02 12:36:49 +00:00
},
"clientFk": {
2022-05-12 07:47:47 +00:00
"type": "number"
2019-04-02 12:36:49 +00:00
},
"receiptFk": {
2022-05-12 07:47:47 +00:00
"type": "number"
2019-04-02 12:36:49 +00:00
},
"amount": {
2022-05-12 07:47:47 +00:00
"type": "number"
2019-04-02 12:36:49 +00:00
},
"response": {
2022-05-12 07:47:47 +00:00
"type": "number"
2019-04-02 12:36:49 +00:00
},
"errorCode": {
2022-05-12 07:47:47 +00:00
"type": "string"
2019-04-02 12:36:49 +00:00
},
"status": {
2022-05-12 07:47:47 +00:00
"type": "string"
2019-04-02 12:36:49 +00:00
},
"created": {
"type": "date"
2019-04-02 12:36:49 +00:00
}
},
"relations": {
"client": {
"type": "belongsTo",
"model": "Client",
"foreignKey": "clientFk"
}
}
}