Properties
| Name | Type | Description |
|---|---|---|
| brand | string | Card brand. |
| directoryServerId | string | Directory Server (DS) identifier. |
| fromSDKVersion | string | The version of the mobile 3D Secure 2 SDK. For the possible values, refer to the versions in [Adyen 3DS2 Android](https://github.com/Adyen/adyen-3ds2-android/releases) and [Adyen 3DS2 iOS](https://git |
| publicKey | string | Public key. The 3D Secure 2 SDK encrypts the device information by using the DS public key. |
| rootCertificates | string | Directory Server root certificates. The 3D Secure 2 SDK verifies the ACS signed content using the rootCertificates. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DSPublicKeyDetail",
"title": "DSPublicKeyDetail",
"properties": {
"brand": {
"description": "Card brand.",
"type": "string"
},
"directoryServerId": {
"description": "Directory Server (DS) identifier.",
"type": "string"
},
"fromSDKVersion": {
"description": "The version of the mobile 3D Secure 2 SDK. For the possible values, refer to the versions in [Adyen 3DS2 Android](https://github.com/Adyen/adyen-3ds2-android/releases) and [Adyen 3DS2 iOS](https://github.com/Adyen/adyen-3ds2-ios/releases).",
"type": "string"
},
"publicKey": {
"description": "Public key. The 3D Secure 2 SDK encrypts the device information by using the DS public key.",
"format": "byte",
"type": "string"
},
"rootCertificates": {
"description": "Directory Server root certificates. The 3D Secure 2 SDK verifies the ACS signed content using the rootCertificates.",
"type": "string"
}
},
"type": "object"
}