Class RequestStates
Provides a set of constants for possible Status values.
Inherited Members
Namespace: Yort.Humm.InStore
Assembly: Yort.Humm.InStore.dll
Syntax
public static class RequestStates
Remarks
See the Humm documentation at .
The most common statuses are:
- Success When the intent of the request is successful e.g. an Approval from the ProcessAuthorisation API.
- Failed When the intent of the request is unsuccessful e.g. a Decline from the ProcessAuthorisation API.
- Error When there is a problem with the request or an unexpected error.
Fields
| Improve this Doc View SourceCancelled
The request was cancelled.
Declaration
public const string Cancelled = "Cancelled"
Field Value
Type | Description |
---|---|
String |
Error
The request failed due to an error.
Declaration
public const string Error = "Error"
Field Value
Type | Description |
---|---|
String |
Failed
The request failed or was declined.
Declaration
public const string Failed = "Failed"
Field Value
Type | Description |
---|---|
String |
Pending
The request is pending and needs more time to be processed. Wait for the specified interval and retry the request.
Declaration
public const string Pending = "Pending"
Field Value
Type | Description |
---|---|
String |
Success
The request was succesfully processed and approved.
Declaration
public const string Success = "Success"
Field Value
Type | Description |
---|---|
String |