
com.nedap.retail.messages.epc.v2.expected_stock.ExpectedStock 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
The newest version!
package com.nedap.retail.messages.epc.v2.expected_stock;
import java.util.List;
import org.joda.time.DateTime;
import com.nedap.retail.messages.stock.GtinQuantity;
public class ExpectedStock {
public DateTime eventTime;
public Integer quantity;
public Integer gtinQuantity;
public List quantityList;
public ExpectedStock(final DateTime eventTime, final Integer quantity, final Integer gtinQuantity,
final List quantityList) {
this.eventTime = eventTime;
this.quantity = quantity;
this.gtinQuantity = gtinQuantity;
this.quantityList = quantityList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy