DigifiedResult class abstract

Data model encapsulating the base Digified result (parent class for all the results from the API)

  • message msg in the API response, represents the recommended action for user
  • nextProcess next in the API response, represents the next operation
  • overallStatus overall_status in the API response, Enumeration representing overall status of the session: (FAILED: 0, VERIFIED: 1, IN_PROGRESS: 2, PENDING: 3)
  • result result in the API response, indicating the session status: (SUCCESS: 0, HAS_ERRORS: -1, HAS_WARNINGS: 1)
  • shouldTerminate should_terminate in the API response, False if there will be a next op-state / try, True otherwise.
  • error Error in the API response, the error message
  • errorCode code in the API response, the error codes
Implementers

Constructors

DigifiedResult(Map dataMap)

Properties

error String?
getter/setter pair
errorCode List<String?>?
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
message String?
getter/setter pair
nextProcess String?
getter/setter pair
overallStatus int?
getter/setter pair
result int?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
shouldTerminate bool?
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited