Properties
| Name | Type | Description |
|---|---|---|
| cardNumberRangeEnd | string | The last test card number in the generated test card range. Example: 5432 1234 1234 4321 |
| cardNumberRangeStart | string | The first test card number in the generated test card range. Example: 5432 1234 1234 1234 |
| creationResultCode | string | Notification message. It informs about the outcome of the operation. Possible values: * CREATED * ALREADY_EXISTS * ERROR |
| message | string | An optional information message about the result. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TestCardRangeCreationResult",
"title": "TestCardRangeCreationResult",
"properties": {
"cardNumberRangeEnd": {
"description": "The last test card number in the generated test card range.\n\nExample: 5432 1234 1234 4321",
"type": "string"
},
"cardNumberRangeStart": {
"description": "The first test card number in the generated test card range.\n\nExample: 5432 1234 1234 1234",
"type": "string"
},
"creationResultCode": {
"description": "Notification message. It informs about the outcome of the operation. Possible values:\n* CREATED\n* ALREADY_EXISTS\n* ERROR",
"enum": [
"ALREADY_EXISTS",
"CREATED",
"ERROR"
],
"type": "string"
},
"message": {
"description": "An optional information message about the result.",
"type": "string"
}
},
"required": [
"cardNumberRangeStart",
"cardNumberRangeEnd",
"creationResultCode"
]
}