All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nedap.retail.messages.epc.v2.stock.StockLevelSummary Maven / Gradle / Ivy

The newest version!
package com.nedap.retail.messages.epc.v2.stock;

import java.util.Set;

import com.fasterxml.jackson.annotation.JsonProperty;
import org.joda.time.DateTime;

public class StockLevelSummary {

    public DateTime generated;

    @JsonProperty("rfid_stock_time")
    public DateTime rfidStockTime;

    @JsonProperty("rfid_stock_start_time")
    public DateTime rfidStockStartTime;

    @JsonProperty("stock_rooms_quantity")
    public Integer stockRoomsQuantity;

    @JsonProperty("sales_floors_quantity")
    public Integer salesFloorsQuantity;

    @JsonProperty("store_quantity")
    public Integer storeQuantity;

    @JsonProperty("stock_ratio")
    public Double stockRatio;

    @JsonProperty("client_ids")
    public Set clientIds;

    public StockLevelSummary() {
    }

    public StockLevelSummary(final DateTime generated, final DateTime rfidStockTime, final DateTime rfidStockStartTime,
            final Integer stockRoomsQuantity, final Integer salesFloorsQuantity, final Integer storeQuantity,
            final Double stockRatio, final Set clientIds) {
        this.generated = generated;
        this.rfidStockTime = rfidStockTime;
        this.rfidStockStartTime = rfidStockStartTime;
        this.stockRoomsQuantity = stockRoomsQuantity;
        this.salesFloorsQuantity = salesFloorsQuantity;
        this.storeQuantity = storeQuantity;
        this.stockRatio = stockRatio;
        this.clientIds = clientIds;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy