TestAccountType
Account type model for test AccountTypeUpdated events.
idstringrequired
Account type ID
The value is used as the accountTypeId parameter for the CreateAccount method
Possible values: non-empty
Example:
amazonerrors object[]nullable
List of errors currently active on the account type.
Array [
typestringnullable
Type or general classification of the error.
Example:
AccountCredentialsInvalidmessagestringnullable
Error message.
providerMessagestringnullable
Original error message from the PSP.
isUserActionRequiredboolean
Whether a user action is required to resolve the error.
Example:
trueisTemporaryboolean
If the error is temporary.
Example:
false]
warnings object[]nullable
List of warnings currently active on the account type.
Array [
typestringnullable
Type or general classification of the error.
Example:
AccountCredentialsInvalidmessagestringnullable
Error message.
providerMessagestringnullable
Original error message from the PSP.
isUserActionRequiredboolean
Whether a user action is required to resolve the error.
Example:
trueisTemporaryboolean
If the error is temporary.
Example:
false]
statestringnullable
Account type state
Ok, Degraded, Down, Maintenance or Disabled
TestAccountType
{
"id": "amazon",
"errors": [
{
"Message": "Authentication with the payment provider is currently not possible",
"Type": "LoginFailure",
"IsUserActionRequired": false
}
],
"warnings": [
{
"type": "AccountCredentialsInvalid",
"message": "string",
"providerMessage": "string",
"isUserActionRequired": true,
"isTemporary": false
}
],
"state": "string"
}