Rev 21612 | Rev 21689 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.web.request;import java.util.Set;public class CreateOrderRequest {private CustomCustomer customer;private Set<CustomFofoLineItem> fofoLineItems;private Set<CustomPaymentOption> paymentOptions;public CustomCustomer getCustomer() {return customer;}public Set<CustomFofoLineItem> getFofoLineItems() {return fofoLineItems;}public void setFofoLineItems(Set<CustomFofoLineItem> fofoLineItems) {this.fofoLineItems = fofoLineItems;}public Set<CustomPaymentOption> getPaymentOptions() {return paymentOptions;}public void setPaymentOptions(Set<CustomPaymentOption> paymentOptions) {this.paymentOptions = paymentOptions;}@Overridepublic String toString() {return "CustomOrderRequest [customer=" + customer + ", fofoLineItems="+ fofoLineItems + ", paymentOptions=" + paymentOptions + "]";}}