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

com.bandwidth.iris.sdk.model.EmergencyNotificationGroupsResponse 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 = "EmergencyNotificationGroupsResponse")
@XmlAccessorType(XmlAccessType.FIELD)
public class EmergencyNotificationGroupsResponse {

    @XmlElementWrapper(name = "EmergencyNotificationGroups")
    @XmlElement(name = "EmergencyNotificationGroup")
    private List emergencyNotificationGroups;

    @XmlElement(name = "EmergencyNotificationGroup")
    private EmergencyNotificationGroup emergencyNotificationGroup;

    @XmlElement(name = "Links")
    private Links links;

    public List getEmergencyNotificationGroups() {
        return emergencyNotificationGroups;
    }

    public void setEmergencyNotificationGroups(List emergencyNotificationGroups) {
        this.emergencyNotificationGroups = emergencyNotificationGroups;
    }

    public Links getLinks() {
        return links;
    }

    public void setLinks(Links links) {
        this.links = links;
    }

    public EmergencyNotificationGroup getEmergencyNotificationGroup() {
        return emergencyNotificationGroup;
    }

    public void setEmergencyNotificationGroup(EmergencyNotificationGroup emergencyNotificationGroup) {
        this.emergencyNotificationGroup = emergencyNotificationGroup;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy