1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
public enum PaymentStatus { [Description("ALL")] ALL = -1, [Description("No Payment")] NoPayment = 10, [Description("No Payment or Partial Payment")] NoPaymentOrPartialPayment = 11, [Description("Authorized")] Authorized = 20, [Description("Charged")] Charged = 30, [Description("Charged or Partial Refund")] ChargedOrPartialRefund = 71, [Description("Charged or Partial Paid")] ChargedOrPartialPaid = 711, [Description("Charged Or Authorized")] ChargedOrAuthorized = 713, [Description("Uncleared")] Uncleared = 40, [Description("Partial Refund")] PartialRefund = 50, [Description("Full Refund")] FullRefund = 60, [Description("Partial or Full Refund")] PartialOrFullRefund = 61, [Description("Partially Paid")] PartiallyPaid = 70, [Description("Ebay Paid")] EbayPaid = 80, [Description("Ebay Paid or Partial Payment")] EbayPaidOrPartialPayment = 81, [Description("Payment Error")] PaymentError = 99 } |