com.bandwidth.iris.sdk.model.AssignedNnRoute 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.
The newest version!
package com.bandwidth.iris.sdk.model;
import jakarta.xml.bind.annotation.*;
@XmlRootElement(name = "AssignedNnRoute")
@XmlAccessorType(XmlAccessType.FIELD)
public class AssignedNnRoute extends BaseModel {
@XmlElement(name = "Name")
private String name;
@XmlElement(name = "Nnid")
private String nnid;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getNnid() {
return nnid;
}
public void setNnid(String nnid) {
this.nnid = nnid;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy