ExpresspayAction 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.expresspay.sdk.core.ExpresspaySdk @see com.expresspay.sdk.feature.adapter @see com.expresspay.sdk.model.response.base.result.IExpresspayResult

@property action the action value.

Inheritance
Available extensions

Values

SALE → const ExpresspayAction

Creates SALE or AUTH transaction.

const ExpresspayAction("SALE")
CAPTURE → const ExpresspayAction

Creates CAPTURE transaction.

const ExpresspayAction("CAPTURE")
CREDITVOID → const ExpresspayAction

Creates REVERSAL or REFUND transaction.

const ExpresspayAction("CREDITVOID")
GET_TRANS_STATUS → const ExpresspayAction

Gets status of transaction in Payment Platform.

const ExpresspayAction("GET_TRANS_STATUS")
GET_TRANS_DETAILS → const ExpresspayAction

Gets details of the order from Payment platform.

const ExpresspayAction("GET_TRANS_DETAILS")
RECURRING_SALE → const ExpresspayAction

Creates SALE or AUTH transaction using previously used cardholder data.

const ExpresspayAction("RECURRING_SALE")
CHARGEBACK → const ExpresspayAction

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 ExpresspayAction("CHARGEBACK")
NONE → const ExpresspayAction
const ExpresspayAction("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<ExpresspayAction>
A constant List of the values in this enum, in order of their declaration.