EdfaPgAction enum

When you make request to Payment Platform, you need to specify action, that needs to be done. Basically, every action is represented by its Adapter. @see com.edfapg.flutter.sdk.core. EdfaPgSdk @see com.edfapg.flutter.sdk.feature.adapter @see com.edfapg.flutter.sdk.model.response.base.result.I EdfaPgResult

@property action the action value.

Inheritance

Constructors

EdfaPgAction(String action)
const
EdfaPgAction.of(String? id)
factory

Values

SALE → const EdfaPgAction

Creates SALE or AUTH transaction.

const EdfaPgAction("SALE")
CAPTURE → const EdfaPgAction

Creates CAPTURE transaction.

const EdfaPgAction("CAPTURE")
CREDITVOID → const EdfaPgAction

Creates REVERSAL or REFUND transaction.

const EdfaPgAction("CREDITVOID")
GET_TRANS_STATUS → const EdfaPgAction

Gets status of transaction in Payment Platform.

const EdfaPgAction("GET_TRANS_STATUS")
GET_TRANS_DETAILS → const EdfaPgAction

Gets details of the order from Payment platform.

const EdfaPgAction("GET_TRANS_DETAILS")
RECURRING_SALE → const EdfaPgAction

Creates SALE or AUTH transaction using previously used cardholder data.

const EdfaPgAction("RECURRING_SALE")
CHARGEBACK → const EdfaPgAction

Following actions can not be made by request, they are created by Payment Platform in certain circumstances (e.g. issuer initiated chargeback) and you receive callback as a result.

const EdfaPgAction("CHARGEBACK")
NONE → const EdfaPgAction
const EdfaPgAction("NONE")

Properties

action String
final
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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<EdfaPgAction>
A constant List of the values in this enum, in order of their declaration.