![JAR search and dependency download from the Maven repository](/logo.png)
infobip.api.model.nc.query.NumberContextRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infobip-api-java-client Show documentation
Show all versions of infobip-api-java-client Show documentation
API client in Java for Infobip's API (http://dev.infobip.com/).
package infobip.api.model.nc.query;
import java.util.List;
import java.util.ArrayList;
/**
* This is a generated class and is not intended for modification!
*/
public class NumberContextRequest {
private List to = new ArrayList<>();
public NumberContextRequest() {
}
public List getTo() {
return this.to;
}
public NumberContextRequest setTo(List to) {
this.to = to;
return this;
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
NumberContextRequest o = (NumberContextRequest)obj;
if (this.to == null) {
if (o.to != null){
return false;
}
} else if (!this.to.equals(o.to)) {
return false;
}
return true;
}
@Override
public String toString() {
return "NumberContextRequest{" +
"to='" + to + "'" +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy