com.bandwidth.iris.sdk.model.EmergencyNotificationGroup 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 = "EmergencyNotificationGroup")
@XmlAccessorType(XmlAccessType.FIELD)
public class EmergencyNotificationGroup {
@XmlElement(name = "Identifier")
private String identifier;
@XmlElement(name = "Description")
private String description;
@XmlElement(name = "CreatedDate")
private String createdDate;
@XmlElement(name = "ModifiedBy")
private String modifiedBy;
@XmlElement(name = "ModifiedDate")
private String modifiedDate;
@XmlElementWrapper(name = "EmergencyNotificationRecipients")
@XmlElement(name = "EmergencyNotificationRecipient")
private List emergencyNotificationRecipients;
public String getIdentifier() {
return identifier;
}
public void setIdentifier(String identifier) {
this.identifier = identifier;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getCreatedDate() {
return createdDate;
}
public void setCreatedDate(String createdDate) {
this.createdDate = createdDate;
}
public String getModifiedBy() {
return modifiedBy;
}
public void setModifiedBy(String modifiedBy) {
this.modifiedBy = modifiedBy;
}
public String getModifiedDate() {
return modifiedDate;
}
public void setModifiedDate(String modifiedDate) {
this.modifiedDate = modifiedDate;
}
public List getEmergencyNotificationRecipients() {
return emergencyNotificationRecipients;
}
public void setEmergencyNotificationRecipients(List emergencyNotificationRecipients) {
this.emergencyNotificationRecipients = emergencyNotificationRecipients;
}
}