Rev 21780 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.web.request;import java.util.List;import com.spice.profitmandi.dao.enumuration.catalog.TagType;public class CreateTagRequest {private String label;private TagType tagType;private String description;private boolean pinAll;private boolean userAll;private List<String> pinCodes;private List<Integer> retailerIds;public String getLabel() {return label;}public void setLabel(String label) {this.label = label;}public TagType getTagType() {return tagType;}public void setTagType(TagType tagType) {this.tagType = tagType;}public String getDescription() {return description;}public void setDescription(String description) {this.description = description;}public boolean isPinAll() {return pinAll;}public void setPinAll(boolean pinAll) {this.pinAll = pinAll;}public boolean isUserAll() {return userAll;}public void setUserAll(boolean userAll) {this.userAll = userAll;}public List<String> getPinCodes() {return pinCodes;}public void setPinCodes(List<String> pinCodes) {this.pinCodes = pinCodes;}public List<Integer> getRetailerIds() {return retailerIds;}public void setRetailerIds(List<Integer> rejectedUserIds) {this.retailerIds = rejectedUserIds;}}