com.shopify.model.ShopifyOrder Maven / Gradle / Ivy
package com.shopify.model;
import java.math.BigDecimal;
import java.util.Currency;
import java.util.LinkedList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.joda.time.DateTime;
import com.shopify.model.adapters.CurrencyAdapter;
import com.shopify.model.adapters.DateTimeAdapter;
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class ShopifyOrder {
private String id;
private String email;
@XmlElement(name = "closed_at")
@XmlJavaTypeAdapter(DateTimeAdapter.class)
private DateTime closedAt;
@XmlElement(name = "created_at")
@XmlJavaTypeAdapter(DateTimeAdapter.class)
private DateTime createdAt;
@XmlElement(name = "updated_at")
@XmlJavaTypeAdapter(DateTimeAdapter.class)
private DateTime updatedAt;
private int number;
private String note;
private String token;
@XmlElement(name = "total_price")
private BigDecimal totalPrice;
@XmlElement(name = "subtotal_price")
private BigDecimal subtotalPrice;
@XmlElement(name = "total_weight")
private long totalWeight;
@XmlElement(name = "total_tax")
private BigDecimal totalTax;
@XmlElement(name = "taxes_included")
private boolean taxesIncluded;
@XmlJavaTypeAdapter(CurrencyAdapter.class)
private Currency currency;
@XmlElement(name = "financial_status")
private String financialStatus;
@XmlElement(name = "total_discounts")
private BigDecimal totalDiscounts;
@XmlElement(name = "total_line_items_price")
private BigDecimal totaLineItemsPrice;
@XmlElement(name = "cart_token")
private String cartToken;
@XmlElement(name = "buyer_accepts_marketing")
private boolean buyerAcceptsMarketing;
private String name;
@XmlElement(name = "referring_site")
private String referringSite;
@XmlElement(name = "landing_site")
private String landingSite;
@XmlElement(name = "cancelled_at")
@XmlJavaTypeAdapter(DateTimeAdapter.class)
private DateTime cancelledAt;
@XmlElement(name = "cancel_reason")
private String cancelReason;
@XmlElement(name = "user_id")
private Integer userId;
@XmlElement(name = "location_id")
private Integer locationId;
@XmlElement(name = "processed_at")
@XmlJavaTypeAdapter(DateTimeAdapter.class)
private DateTime processedAt;
@XmlElement(name = "browser_ip")
private String browserIp;
@XmlElement(name = "order_number")
private String orderNumber;
@XmlElement(name = "processing_method")
private String processingMethod;
@XmlElement(name = "source_name")
private String sourceName;
@XmlElement(name = "fulfillment_status")
private String fulfillmentStatus;
@XmlElement(name = "tags")
private String tags;
@XmlElement(name = "order_status_url")
private String orderStatusUrl;
@XmlElement(name = "line_items")
private List lineItems = new LinkedList<>();
private List fulfillments = new LinkedList<>();
@XmlElement(name = "billing_address")
private ShopifyAddress billingAddress = new ShopifyAddress();
@XmlElement(name = "shipping_address")
private ShopifyAddress shippingAddress = new ShopifyAddress();
private ShopifyCustomer customer = new ShopifyCustomer();
@XmlElement(name = "shipping_lines")
private List shippingLines = new LinkedList<>();
@XmlElement(name = "tax_lines")
private List taxLines = new LinkedList<>();
@XmlElement(name = "note_attributes")
private List noteAttributes = new LinkedList<>();
private List refunds = new LinkedList<>();
private List metafields = new LinkedList<>();
public String getId() {
return id;
}
public void setId(final String id) {
this.id = id;
}
public String getEmail() {
return email;
}
public void setEmail(final String email) {
this.email = email;
}
public DateTime getClosedAt() {
return closedAt;
}
public void setClosedAt(final DateTime closedAt) {
this.closedAt = closedAt;
}
public DateTime getCreatedAt() {
return createdAt;
}
public void setCreatedAt(final DateTime createdAt) {
this.createdAt = createdAt;
}
public DateTime getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(final DateTime updatedAt) {
this.updatedAt = updatedAt;
}
public int getNumber() {
return number;
}
public void setNumber(final int number) {
this.number = number;
}
public String getNote() {
return note;
}
public void setNote(final String note) {
this.note = note;
}
public String getToken() {
return token;
}
public void setToken(final String token) {
this.token = token;
}
public BigDecimal getTotalPrice() {
return totalPrice;
}
public void setTotalPrice(final BigDecimal totalPrice) {
this.totalPrice = totalPrice;
}
public BigDecimal getSubtotalPrice() {
return subtotalPrice;
}
public void setSubtotalPrice(final BigDecimal subtotalPrice) {
this.subtotalPrice = subtotalPrice;
}
public long getTotalWeight() {
return totalWeight;
}
public void setTotalWeight(final long totalWeight) {
this.totalWeight = totalWeight;
}
public BigDecimal getTotalTax() {
return totalTax;
}
public void setTotalTax(final BigDecimal totalTax) {
this.totalTax = totalTax;
}
public boolean isTaxesIncluded() {
return taxesIncluded;
}
public void setTaxesIncluded(final boolean taxesIncluded) {
this.taxesIncluded = taxesIncluded;
}
public Currency getCurrency() {
return currency;
}
public void setCurrency(final Currency currency) {
this.currency = currency;
}
public String getFinancialStatus() {
return financialStatus;
}
public void setFinancialStatus(final String financialStatus) {
this.financialStatus = financialStatus;
}
public BigDecimal getTotalDiscounts() {
return totalDiscounts;
}
public void setTotalDiscounts(final BigDecimal totalDiscounts) {
this.totalDiscounts = totalDiscounts;
}
public BigDecimal getTotaLineItemsPrice() {
return totaLineItemsPrice;
}
public void setTotaLineItemsPrice(final BigDecimal totaLineItemsPrice) {
this.totaLineItemsPrice = totaLineItemsPrice;
}
public String getCartToken() {
return cartToken;
}
public void setCartToken(final String cartToken) {
this.cartToken = cartToken;
}
public boolean isBuyerAcceptsMarketing() {
return buyerAcceptsMarketing;
}
public void setBuyerAcceptsMarketing(final boolean buyerAcceptsMarketing) {
this.buyerAcceptsMarketing = buyerAcceptsMarketing;
}
public String getName() {
return name;
}
public void setName(final String name) {
this.name = name;
}
public String getReferringSite() {
return referringSite;
}
public void setReferringSite(final String referringSite) {
this.referringSite = referringSite;
}
public String getLandingSite() {
return landingSite;
}
public void setLandingSite(final String landingSite) {
this.landingSite = landingSite;
}
public DateTime getCancelledAt() {
return cancelledAt;
}
public void setCancelledAt(final DateTime cancelledAt) {
this.cancelledAt = cancelledAt;
}
public String getCancelReason() {
return cancelReason;
}
public void setCancelReason(final String cancelReason) {
this.cancelReason = cancelReason;
}
public Integer getUserId() {
return userId;
}
public void setUserId(final Integer userId) {
this.userId = userId;
}
public Integer getLocationId() {
return locationId;
}
public void setLocationId(final Integer locationId) {
this.locationId = locationId;
}
public DateTime getProcessedAt() {
return processedAt;
}
public void setProcessedAt(final DateTime processedAt) {
this.processedAt = processedAt;
}
public String getBrowserIp() {
return browserIp;
}
public void setBrowserIp(final String browserIp) {
this.browserIp = browserIp;
}
public String getOrderNumber() {
return orderNumber;
}
public void setOrderNumber(final String orderNumber) {
this.orderNumber = orderNumber;
}
public String getProcessingMethod() {
return processingMethod;
}
public void setProcessingMethod(final String processingMethod) {
this.processingMethod = processingMethod;
}
public String getSourceName() {
return sourceName;
}
public void setSourceName(final String sourceName) {
this.sourceName = sourceName;
}
public String getFulfillmentStatus() {
return fulfillmentStatus;
}
public void setFulfillmentStatus(final String fulfillmentStatus) {
this.fulfillmentStatus = fulfillmentStatus;
}
public String getTags() {
return tags;
}
public void setTags(final String tags) {
this.tags = tags;
}
public String getOrderStatusUrl() {
return orderStatusUrl;
}
public void setOrderStatusUrl(final String orderStatusUrl) {
this.orderStatusUrl = orderStatusUrl;
}
public List getLineItems() {
return lineItems;
}
public void setLineItems(final List lineItems) {
this.lineItems = lineItems;
}
public List getFulfillments() {
return fulfillments;
}
public void setFulfillments(final List fulfillments) {
this.fulfillments = fulfillments;
}
public ShopifyAddress getBillingAddress() {
return billingAddress;
}
public void setBillingAddress(final ShopifyAddress billingAddress) {
this.billingAddress = billingAddress;
}
public ShopifyAddress getShippingAddress() {
return shippingAddress;
}
public void setShippingAddress(final ShopifyAddress shippingAddress) {
this.shippingAddress = shippingAddress;
}
public ShopifyCustomer getCustomer() {
return customer;
}
public void setCustomer(final ShopifyCustomer customer) {
this.customer = customer;
}
public List getShippingLines() {
return shippingLines;
}
public void setShippingLines(final List shippingLines) {
this.shippingLines = shippingLines;
}
public List getTaxLines() {
return taxLines;
}
public void setTaxLines(final List taxLines) {
this.taxLines = taxLines;
}
public List getNoteAttributes() {
return noteAttributes;
}
public void setNoteAttributes(final List noteAttributes) {
this.noteAttributes = noteAttributes;
}
public List getMetafields() {
return metafields;
}
public void setMetafields(final List metafields) {
this.metafields = metafields;
}
public List getRefunds() {
return refunds;
}
public void setRefunds(final List refunds) {
this.refunds = refunds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy