package com.theorchard.javaowsassetbulkscript.api;

public class ProductItem {
    private int product_id;
    private long upc;
    private String context_type;

    public void setProduct_id(int product_id) {
        this.product_id = product_id;
    }

    public void setUpc(long upc) {
        this.upc = upc;
    }

    public void setContext_type(String context_type) {
        this.context_type = context_type;
    }

    public long getUpc() {
        return upc;
    }

    public int getProduct_id() {
        return product_id;
    }

    public String getContext_type() {
        return context_type;
    }
}
