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

com.bandwidth.iris.sdk.model.EmergencyNotificationGroup 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 = "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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy