Status

enum Status : Enum<Transaction.Status>

Enum representing the status of a Transaction.

Below one can find a simple representation of the status progression flow.

       +-----------+
| UNKNOWN +-------------+
+-----+-----+ |
| |
v |
+-----+-----+ |
+--+ UPLOADING +----------+ |
| ------+-----+ | |
| | | |
| v | |
| +-----+-----+ | |
| |PROCESSING +------+ | |
| +-----+------ | | |
| | | | |
| v v v v
| +-----+-----+ ++---+--++
+->+ COMPLETED | | FAILED |
+-----------+ +--------+

Entries

FAILED
Link copied to clipboard
FAILED("FAILED")
Transaction validation or processing has failed.
COMPLETED
Link copied to clipboard
COMPLETED("COMPLETED")
Transaction processing has finished successfully.
PROCESSING
Link copied to clipboard
PROCESSING("PROCESSING")
Transaction processing finished image upload, image data extraction in progress.
UPLOADING
Link copied to clipboard
UPLOADING("UPLOADING")
Transaction processing has started, image upload in progress.
PENDING
Link copied to clipboard
PENDING("PENDING")
PENDING status will no longer be set.
UNKNOWN
Link copied to clipboard
UNKNOWN("UNKNOWN")
Transaction status is not yet known.

Properties

key
Link copied to clipboard
val key: String
name
Link copied to clipboard
val name: String
ordinal
Link copied to clipboard
val ordinal: Int