42 lines
1.8 KiB
Go
42 lines
1.8 KiB
Go
package paybridge
|
|
|
|
const (
|
|
payBridgeFinalStatusApproved = "APPROVED"
|
|
payBridgeFinalStatusDeclined = "DECLINED"
|
|
payBridgeFinalStatusCancelled = "CANCELLED"
|
|
payBridgeFinalStatusTimeout = "TIMEOUT"
|
|
payBridgeFinalStatusVoided = "VOIDED"
|
|
payBridgeFinalStatusVoidedDailyLimitExceeded = "VOIDED_DAILY_LIMIT_EXCEEDED"
|
|
payBridgeFinalStatusDailyLimitVoidFailed = "DAILY_LIMIT_EXCEEDED_VOID_FAILED"
|
|
payBridgeFinalStatusDailyLimitValidationError = "DAILY_LIMIT_VALIDATION_ERROR"
|
|
payBridgeFinalStatusError = "ERROR"
|
|
payBridgeFinalStatusFailed = "FAILED"
|
|
)
|
|
|
|
const (
|
|
payBridgeMessageInsertOrSwipeCard = "insert or swipe card"
|
|
payBridgeMessageInsertSwipeOrPresentCard = "insert, swipe or present card"
|
|
payBridgeMessageInsertCard = "insert card"
|
|
payBridgeMessagePleaseWait = "please wait"
|
|
payBridgeMessageDoNotRemoveCard = "please wait. do not remove card"
|
|
payBridgeMessageTryAnotherInterface = "please try another interface"
|
|
payBridgeMessagePIN = "pin"
|
|
payBridgeMessagePINAgain = "pin again"
|
|
payBridgeMessageTransactionCancelled = "transaction cancelled"
|
|
payBridgeMessageProcessing = "processing"
|
|
payBridgeMessageApproved = "approved"
|
|
payBridgeMessageDeclined = "declined"
|
|
)
|
|
|
|
const (
|
|
payBridgeCodeInsertCard = "101"
|
|
payBridgeCodeEnterPIN = "106"
|
|
payBridgeCodeCancelled = "124"
|
|
payBridgeCodePleaseWait = "1017"
|
|
payBridgeCodePresentCard = "1109"
|
|
payBridgeCodePresentCardAlternate = "1113"
|
|
payBridgeCodeEnterPINAgain = "1129"
|
|
payBridgeCodeTryAnotherInterface = "1274"
|
|
payBridgeCodeDoNotRemoveCard = "1312"
|
|
)
|