it.netgrid.woocommerce.model.OrderStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwcrc Show documentation
Show all versions of jwcrc Show documentation
JWCRC provides a client for the Woocommerce API v1. (2.6.x)
package it.netgrid.woocommerce.model;
public class OrderStatus {
public static final String PENDING = "pending";
public static final String PROCESSING = "processing";
public static final String ON_HOLD = "on-hold";
public static final String COMPLETED = "completed";
public static final String CANCELLED = "cancelled";
public static final String REFUNDED = "refunded";
public static final String FAILED = "failed";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy