Order Payment Status - Sellercloud API Docs

Order Payment Status

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
}