package json.templateInfo; import java.util.List; import javax.annotation.Generated; import com.google.gson.annotations.SerializedName; @Generated("net.hexar.json2pojo") @SuppressWarnings("unused") public class TemplateInfo { @SerializedName("category") private String Category; @SerializedName("composition") private List Composition; @SerializedName("description") private String Description; @SerializedName("name") private String Name; @SerializedName("flowType") private String FlowType; @SerializedName("relations") private List Relations; @SerializedName("nodesToDelete") private List NodesToDelete; @SerializedName("subCategory") private String SubCategory; @SerializedName("updateIfExist") private Boolean UpdateIfExist; public String getCategory() { return Category; } public void setCategory(String category) { Category = category; } public List getComposition() { return Composition; } public void setComposition(List composition) { Composition = composition; } public String getDescription() { return Description; } public void setDescription(String description) { Description = description; } public String getName() { return Name; } public void setName(String name) { Name = name; } public String getFlowType() { return FlowType; } public void setFlowType(String flowType) { FlowType = flowType; } public List getNodesToDelete() { return NodesToDelete; } public void setNodesToDelete(List nodesToDelete) { NodesToDelete = nodesToDelete; } public List getRelations() { return Relations; } public void setRelations(List relations) { Relations = relations; } public String getSubCategory() { return SubCategory; } public void setSubCategory(String subCategory) { SubCategory = subCategory; } public Boolean getUpdateIfExist() { return UpdateIfExist; } public void setUpdateIfExist(Boolean updateIfExist) { UpdateIfExist = updateIfExist; } }