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

com.bronto.api.model.DeliveryGroupObject 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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for deliveryGroupObject complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="deliveryGroupObject">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="visibility" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="deliveryCount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="createdDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="deliveryIds" 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"/>
 *         <element name="messageIds" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "deliveryGroupObject", propOrder = { "id", "name", "visibility", "deliveryCount", "createdDate", "deliveryIds", "messageRuleIds", "messageIds" }) public class DeliveryGroupObject { protected String id; protected String name; protected String visibility; protected Long deliveryCount; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar createdDate; @XmlElement(nillable = true) protected List deliveryIds; @XmlElement(nillable = true) protected List messageRuleIds; @XmlElement(nillable = true) protected List messageIds; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the visibility property. * * @return * possible object is * {@link String } * */ public String getVisibility() { return visibility; } /** * Sets the value of the visibility property. * * @param value * allowed object is * {@link String } * */ public void setVisibility(String value) { this.visibility = value; } /** * Gets the value of the deliveryCount property. * * @return * possible object is * {@link Long } * */ public Long getDeliveryCount() { return deliveryCount; } /** * Sets the value of the deliveryCount property. * * @param value * allowed object is * {@link Long } * */ public void setDeliveryCount(Long value) { this.deliveryCount = value; } /** * Gets the value of the createdDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreatedDate() { return createdDate; } /** * Sets the value of the createdDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreatedDate(XMLGregorianCalendar value) { this.createdDate = 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 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; } /** * 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; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy