it.netgrid.woocommerce.model.request.CustomerRequest 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.request;
import javax.xml.bind.annotation.XmlRootElement;
import it.netgrid.woocommerce.model.Customer;
@XmlRootElement
public class CustomerRequest {
private Customer customer;
public CustomerRequest() {}
public CustomerRequest(Customer customer) {
this.customer = customer;
}
public Customer getCustomer() {
return customer;
}
public void setCustomer(Customer customer) {
this.customer = customer;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy