com.bandwidth.iris.sdk.model.CityResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bandwidth-java-iris-sdk Show documentation
Show all versions of bandwidth-java-iris-sdk Show documentation
Java SDK for use with the IRIS API.
package com.bandwidth.iris.sdk.model;
import javax.xml.bind.annotation.*;
import java.util.ArrayList;
import java.util.List;
@XmlRootElement(name = "CityResponse")
@XmlAccessorType(XmlAccessType.FIELD)
public class CityResponse {
@XmlElement(name = "ResultCount")
private int resultCount;
@XmlElementWrapper(name = "Cities")
@XmlElement(name = "City")
private List cities = new ArrayList();
public int getResultCount() {
return resultCount;
}
public void setResultCount(int resultCount) {
this.resultCount = resultCount;
}
public List getCities() {
return cities;
}
public void setCities(List cities) {
this.cities = cities;
}
}