
com.nedap.retail.messages.stock.StockSummaryListRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messages Show documentation
Show all versions of messages Show documentation
Client and messages for communicating with the Nedap Retail APIs
package com.nedap.retail.messages.stock;
import org.codehaus.jackson.annotate.JsonProperty;
import org.codehaus.jackson.map.annotate.JsonSerialize;
import org.joda.time.DateTime;
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
public class StockSummaryListRequest {
public static final String FROM_EVENT_TIME = "from_event_time";
public static final String UNTIL_EVENT_TIME = "until_event_time";
public String location;
@JsonProperty(FROM_EVENT_TIME)
public DateTime fromEventTime;
@JsonProperty(UNTIL_EVENT_TIME)
public DateTime untilEventTime;
public StockSummaryListRequest() {
}
public StockSummaryListRequest(final String location, final DateTime fromEventTime, final DateTime untilEventTime) {
this.location = location;
this.fromEventTime = fromEventTime;
this.untilEventTime = untilEventTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy