Class ApiPaymentErrorResponse
Inherited Members
Namespace: Worldline.Acquiring.Sdk.V1.Domain
Assembly: Worldline.Acquiring.Sdk.dll
Syntax
public class ApiPaymentErrorResponse
Properties
Detail
Any relevant details about the error.
May include suggestions for handling it. Can be an empty string if no extra details are
available.
Declaration
public string Detail { get; set; }
Property Value
Type | Description |
---|---|
string |
Instance
A URI reference that identifies the specific occurrence of the error.
It may or may not yield further information if dereferenced.
Declaration
public string Instance { get; set; }
Property Value
Type | Description |
---|---|
string |
Status
The HTTP status code of this error response.
Included to aid those frameworks that have a hard time working with anything other than
the body of an HTTP response.
Declaration
public int? Status { get; set; }
Property Value
Type | Description |
---|---|
int? |
Title
The human-readable version of the error.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
The type of the error.
This is what you should match against when implementing error handling.
It is in the form of a URL that identifies the error type.
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
string |