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

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

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

    @XmlElementWrapper(name = "EmergencyNotificationEndpointOrders")
    @XmlElement(name = "EmergencyNotificationEndpointOrder")
    private List emergencyNotificationEndpointOrders;

    @XmlElement(name = "EmergencyNotificationEndpointOrder")
    private EmergencyNotificationEndpointOrder emergencyNotificationEndpointOrder;

    @XmlElement(name = "EmergencyNotificationEndpointAssociation")
    private EmergencyNotificationEndpointAssociation emergencyNotificationEndpointAssociation;

    public Links getLinks() {
        return links;
    }

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

    public List getEmergencyNotificationEndpointOrders() {
        return emergencyNotificationEndpointOrders;
    }

    public void setEmergencyNotificationEndpointOrders(List emergencyNotificationEndpointOrders) {
        this.emergencyNotificationEndpointOrders = emergencyNotificationEndpointOrders;
    }

    public EmergencyNotificationEndpointOrder getEmergencyNotificationEndpointOrder() {
        return emergencyNotificationEndpointOrder;
    }

    public void setEmergencyNotificationEndpointOrder(EmergencyNotificationEndpointOrder emergencyNotificationEndpointOrder) {
        this.emergencyNotificationEndpointOrder = emergencyNotificationEndpointOrder;
    }

    public EmergencyNotificationEndpointAssociation getEmergencyNotificationEndpointAssociation() {
        return emergencyNotificationEndpointAssociation;
    }

    public void setEmergencyNotificationEndpointAssociation(EmergencyNotificationEndpointAssociation emergencyNotificationEndpointAssociation) {
        this.emergencyNotificationEndpointAssociation = emergencyNotificationEndpointAssociation;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy