com.mozu.api.contracts.customer.CommerceSummary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mozu-api-core Show documentation
Show all versions of mozu-api-core Show documentation
Mozu Java is a SDK that enables you to create robust Java applications that integrate with the Mozu platform
/**
* This code was auto-generated by a Codezu.
*
* Changes to this file may cause incorrect behavior and will be lost if
* the code is regenerated.
*/
package com.mozu.api.contracts.customer;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.joda.time.DateTime;
import java.io.IOException;
import java.lang.ClassNotFoundException;
import com.mozu.api.contracts.customer.CurrencyAmount;
/**
* Properties of the commerce summary associated with a customer account, which includes details about the shopper's most recent order, wish lists, and total order value over time.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class CommerceSummary implements Serializable
{
// Default Serial Version UID
private static final long serialVersionUID = 1L;
protected DateTime lastOrderDate;
public DateTime getLastOrderDate() {
return this.lastOrderDate;
}
public void setLastOrderDate(DateTime lastOrderDate) {
this.lastOrderDate = lastOrderDate;
}
protected Integer orderCount;
public Integer getOrderCount() {
return this.orderCount;
}
public void setOrderCount(Integer orderCount) {
this.orderCount = orderCount;
}
/**
* The number of visits to a site associated with a customer account.
*/
protected Integer visitsCount;
public Integer getVisitsCount() {
return this.visitsCount;
}
public void setVisitsCount(Integer visitsCount) {
this.visitsCount = visitsCount;
}
protected Integer wishlistCount;
public Integer getWishlistCount() {
return this.wishlistCount;
}
public void setWishlistCount(Integer wishlistCount) {
this.wishlistCount = wishlistCount;
}
protected CurrencyAmount totalOrderAmount;
public CurrencyAmount getTotalOrderAmount() {
return this.totalOrderAmount;
}
public void setTotalOrderAmount(CurrencyAmount totalOrderAmount) {
this.totalOrderAmount = totalOrderAmount;
}
}