Created
May 10, 2016 21:34
-
-
Save ishmaelmakitla/486c93df449918b5b23dff04ab70adba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Item{ | |
String entity_id; | |
String attribute_set_id; | |
String type_id; | |
public Item(){} | |
public String getEntityId(){return this.entity_id;} | |
public void setEntityId(String id){this.entity_id = id;} | |
public String getAttributeSetId(){return this.attribute_set_id;} | |
public void setAttributeSetId(String setId){this.attribute_set_id = setId;} | |
public String getTypeId(){return this.type_id;} | |
public void setTypeId(String typeId){this.type_id = typeId;} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment