org.gs4tr.gcc.restclient.model.WordCountSummary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gcc-restclient Show documentation
Show all versions of gcc-restclient Show documentation
GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.
package org.gs4tr.gcc.restclient.model;
import com.fasterxml.jackson.annotation.JsonProperty;
public class WordCountSummary {
private Long count;
private String key;
@JsonProperty("display_name")
private String displayName;
public WordCountSummary() {
}
public Long getCount() {
return count;
}
public void setCount(Long count) {
this.count = count;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
}