All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.netgrid.woocommerce.model.request.CustomerRequest Maven / Gradle / Ivy

There is a newer version: 1.2.5
Show newest version
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