package com.stripe.model;
public class Inventory {
String type;
Integer quantity;
String value;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Integer getQuantity() {
return quantity;
}
public void setQuantity(Integer quantity) {
this.quantity = quantity;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}