All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bandwidth.iris.sdk.model.AddedEmergencyNotificationGroup Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy