
com.bronto.api.model.AddToDeliveryGroup Maven / Gradle / Ivy
package com.bronto.api.model;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for addToDeliveryGroup complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="addToDeliveryGroup">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="deliveryGroup" type="{http://api.bronto.com/v4}deliveryGroupObject" minOccurs="0"/>
* <element name="deliveryIds" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="messageIds" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="messageRuleIds" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "addToDeliveryGroup", propOrder = {
"deliveryGroup",
"deliveryIds",
"messageIds",
"messageRuleIds"
})
public class AddToDeliveryGroup {
protected DeliveryGroupObject deliveryGroup;
protected List deliveryIds;
protected List messageIds;
protected List messageRuleIds;
/**
* Gets the value of the deliveryGroup property.
*
* @return
* possible object is
* {@link DeliveryGroupObject }
*
*/
public DeliveryGroupObject getDeliveryGroup() {
return deliveryGroup;
}
/**
* Sets the value of the deliveryGroup property.
*
* @param value
* allowed object is
* {@link DeliveryGroupObject }
*
*/
public void setDeliveryGroup(DeliveryGroupObject value) {
this.deliveryGroup = value;
}
/**
* Gets the value of the deliveryIds property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the deliveryIds property.
*
*
* For example, to add a new item, do as follows:
*
* getDeliveryIds().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getDeliveryIds() {
if (deliveryIds == null) {
deliveryIds = new ArrayList();
}
return this.deliveryIds;
}
/**
* Gets the value of the messageIds property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the messageIds property.
*
*
* For example, to add a new item, do as follows:
*
* getMessageIds().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getMessageIds() {
if (messageIds == null) {
messageIds = new ArrayList();
}
return this.messageIds;
}
/**
* Gets the value of the messageRuleIds property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the messageRuleIds property.
*
*
* For example, to add a new item, do as follows:
*
* getMessageRuleIds().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getMessageRuleIds() {
if (messageRuleIds == null) {
messageRuleIds = new ArrayList();
}
return this.messageRuleIds;
}
}