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