Created
April 21, 2012 16:39
-
-
Save dph01/2438241 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object PaypalTransactionStatus extends Enumeration { | |
val CancelledReversalPayment = Value(1, "Cancelled_Reversal") | |
val ClearedPayment = Value(2, "Cleared") | |
val CompletedPayment = Value(3, "Completed") | |
val DeniedPayment = Value(4, "Denied") | |
val ExpiredPayment = Value(5, "Expired") | |
val FailedPayment = Value(6, "Failed") | |
val PendingPayment = Value(7, "Pending") | |
val RefundedPayment = Value(8, "Refunded") | |
val ReturnedPayment = Value(9, "Returned") | |
val ReversedPayment = Value(10, "Reversed") | |
val UnclaimedPayment = Value(11, "Unclaimed") | |
val UnclearedPayment = Value(12, "Uncleared") | |
val VoidedPayment = Value(13, "Voided") | |
val InProgressPayment = Value(14, "In-Progress") | |
val PartiallyRefundedPayment = Value(15, "Partially-Refunded") | |
val ProcessedPayment = Value(16, "Processed") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment