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

60 lines
1.2 KiB
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"
},
"merchantParameters": {
"type": "string"
},
"signature": {
"type": "string"
},
"signatureVersion": {
"type": "string"
},
"responseError": {
"type": "string"
2019-04-02 12:36:49 +00:00
}
},
"relations": {
"client": {
"type": "belongsTo",
"model": "Client",
"foreignKey": "clientFk"
}
}
}