![JAR search and dependency download from the Maven repository](/logo.png)
com.messagebird.objects.integrations.HSMQualityScore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messagebird-api Show documentation
Show all versions of messagebird-api Show documentation
The MessageBird API provides an API to the MessageBird SMS, Chat and Voice services located at https://www.messagebird.com.
The newest version!
package com.messagebird.objects.integrations;
import java.util.List;
public class HSMQualityScore {
private String score;
private long date;
private List reasons;
public String getScore() {
return score;
}
public void setScore(String score) {
this.score = score;
}
public long getDate() {
return date;
}
public void setDate(long date) {
this.date = date;
}
public List getReasons() {
return reasons;
}
public void setReasons(List reasons) {
this.reasons = reasons;
}
@Override
public String toString() {
return "HSMQualityScore{" +
"score='" + score + '\'' +
", date=" + date +
", reasons=" + reasons +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy