The Class PaymentGatewayResponseDto.
| name | data type | description |
|---|---|---|
| result | Result | The urlPaymentHostedCheckout. |
| status | ActionStatusEnum | Tells whether the instance of this ActionStatus object ok or not.
|
| errorCode | MeveoApiErrorCodeEnum | An error code. |
| message | string | A detailed error message if applicable, can contain the entity id that was created. |
| entityId | number | the entity identifier |
| entityCode | string | the entity code |
Example
{
"result" : {
"hostedCheckoutUrl" : "...",
"ca" : "...",
"returnUrl" : "..."
},
"status" : "FAIL",
"errorCode" : "ENTITY_NOT_ALLOWED_EXCEPTION",
"message" : "...",
"entityId" : 12345,
"entityCode" : "..."
}