JSON Objekt
acsRenderingType
acsRenderingType
Data Elements
Key | Format | Condition | Description |
acsInterface | string | M | Die ACS-Schnittstelle, die dem Karteninhaber die Challenge zeigen soll Zulässige Werte: · native · html |
acsUiTemplate | string | M | Bezeichnet das Format der UI-Vorlage, welche das ACS dem Kunden zuerst zeigt. Zulässige Werte: · text · singleSelect · multiSelect · oob · htmlOther htmlOther is nur in Kombination mit html UI gültig (siehe acsInterface). |
Schema
{
„$id“: „https://www.computop-paygate.com/schemas/acsRenderingType.json“,
„title“: „accountInfo“,
„description“: „ACS Rendering Type“,
„type“: „object“,
„properties“: {
„acsRenderingType“: {
„type“: „object“,
„properties“: {
„acsInterface“: {
„type“: „string“,
„enum“: [
„native“,
„html“
]
},
„acsUiTemplate“: {
„type“: „string“,
„enum“: [
„text“,
„singleSelect“,
„multiSelect“,
„oob“,
„other“
]
}
},
„required“: [
„acsInterface“,
„acsUiTemplate“
],
„additionalProperties“: false
}
},
„additionalProperties“: false
}
Beispiel
{
„acsRenderingType“: {
„acsInterface“: „native“,
„acsUiTemplate“: „singleSelect“
}
}