br.com.vtex.Models.Item Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vtex-android-sdk Show documentation
Show all versions of vtex-android-sdk Show documentation
Uma biblioteca para ajudar as agências a criar suas lojas Android.
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