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

br.com.vtex.Models.Item Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package br.com.vtex.Models;

/**
 * Created by felipe-moraais on 04/02/15.
 */
public class Item {

    private String name;
    private String id;
    private Integer quantity;
    private Integer price;
    private String availability;

    public Item(String id, String name, Integer quantity, Integer price, String availability ){
        this.id = id;
        this.name = name;
        this.quantity = quantity;
        this.price = price;
        this.availability = availability;
    }

    public Item() {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy