br.com.vtex.Models.OrderForm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vtex-android-sdk Show documentation
Show all versions of vtex-android-sdk Show documentation
Uma biblioteca para ajudar as agências a criar suas lojas Android.
package br.com.vtex.Models;
import java.util.ArrayList;
/**
* Created by felipe-moraais on 03/02/15.
*/
public class OrderForm {
private ArrayList- items;
private String orderFormId;
private Integer salesChannel;
private Boolean canEditData;
private String userProfileId;
public OrderForm(ArrayList
- items, String orderFormId, Integer salesChannel, Boolean canEditData, String userProfileId) {
this.items = items;
this.orderFormId = orderFormId;
this.salesChannel = salesChannel;
this.canEditData = canEditData;
this.userProfileId = userProfileId;
}
public OrderForm() {
}
public ArrayList
- getItems() {
return items;
}
public void setItems(ArrayList
- items) {
this.items = items;
}
public String getUserProfileId() {
return userProfileId;
}
public void setUserProfileId(String userProfileId) {
this.userProfileId = userProfileId;
}
public Boolean getCanEditData() {
return canEditData;
}
public void setCanEditData(Boolean canEditData) {
this.canEditData = canEditData;
}
public Integer getSalesChannel() {
return salesChannel;
}
public void setSalesChannel(Integer salesChannel) {
this.salesChannel = salesChannel;
}
public String getOrderFormId() {
return orderFormId;
}
public void setOrderFormId(String orderFormId) {
this.orderFormId = orderFormId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy