com.bandwidth.iris.sdk.model.AddedEmergencyNotificationGroup 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.List;
@XmlRootElement(name = "AddedEmergencyNotificationGroup")
@XmlAccessorType(XmlAccessType.FIELD)
public class AddedEmergencyNotificationGroup {
@XmlElement(name = "Description")
private String description;
@XmlElement(name = "Identifier")
private String identifier;
@XmlElementWrapper(name = "AddedEmergencyNotificationRecipients")
@XmlElement(name = "EmergencyNotificationRecipient")
private List addedEmergencyNotificationRecipients;
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public List getAddedEmergencyNotificationRecipients() {
return addedEmergencyNotificationRecipients;
}
public void setAddedEmergencyNotificationRecipients(List addedEmergencyNotificationRecipients) {
this.addedEmergencyNotificationRecipients = addedEmergencyNotificationRecipients;
}
public String getIdentifier() {
return identifier;
}
public void setIdentifier(String identifier) {
this.identifier = identifier;
}
}