ExpresspayStatus enum
Status – actual status of transaction in Payment Platform. @see com.expresspay.sdk.model.response.base.result.IExpresspayResult
@property status the status value.
Values
- SECURE_3D → const ExpresspayStatus
-
The transaction awaits 3D-Secure validation.
const ExpresspayStatus("3DS")
- REDIRECT → const ExpresspayStatus
-
The transaction is redirected.
const ExpresspayStatus("REDIRECT")
- PENDING → const ExpresspayStatus
-
The transaction awaits CAPTURE.
const ExpresspayStatus("PENDING")
- SETTLED → const ExpresspayStatus
-
Successful transaction.
const ExpresspayStatus("SETTLED")
- REVERSAL → const ExpresspayStatus
-
Transaction for which reversal was made.
const ExpresspayStatus("REVERSAL")
- REFUND → const ExpresspayStatus
-
Transaction for which refund was made.
const ExpresspayStatus("REFUND")
- CHARGEBACK → const ExpresspayStatus
-
Transaction for which chargeback was made.
const ExpresspayStatus("CHARGEBACK")
- DECLINED → const ExpresspayStatus
-
Not successful transaction.
const ExpresspayStatus("DECLINED")
- NONE → const ExpresspayStatus
-
const ExpresspayStatus("NONE")
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- status → String
-
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
ExpresspayStatus> - A constant List of the values in this enum, in order of their declaration.