com.tinypass.client.publisher.model.ShowOptionInCounters Maven / Gradle / Ivy
package com.tinypass.client.publisher.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.tinypass.client.publisher.model.ShowOptionInChannelStats;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
public class ShowOptionInCounters {
private String selectedChannel = null;
private List showOptionInChannels = new ArrayList();
public String getSelectedChannel() {
return selectedChannel;
}
public void setSelectedChannel(String selectedChannel) {
this.selectedChannel = selectedChannel;
}
public List getShowOptionInChannels() {
return showOptionInChannels;
}
public void setShowOptionInChannels(List showOptionInChannels) {
this.showOptionInChannels = showOptionInChannels;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ShowOptionInCounters {\n");
sb.append(" selectedChannel: ").append(selectedChannel).append("\n");
sb.append(" showOptionInChannels: ").append(showOptionInChannels).append("\n");
sb.append("}\n");
return sb.toString();
}
}