![JAR search and dependency download from the Maven repository](/logo.png)
com.tinypass.client.publisher.model.KeySource 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.Source;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
public class KeySource {
/* Message key */
private String key = null;
private List keySources = new ArrayList();
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public List getKeySources() {
return keySources;
}
public void setKeySources(List keySources) {
this.keySources = keySources;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class KeySource {\n");
sb.append(" key: ").append(key).append("\n");
sb.append(" keySources: ").append(keySources).append("\n");
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy