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

com.bronto.api.model.BounceObject Maven / Gradle / Ivy

The newest version!

package com.bronto.api.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for bounceObject complex type. * *

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

 * <complexType name="bounceObject">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="contactId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="deliveryId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="created" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "bounceObject", propOrder = { "contactId", "deliveryId", "type", "description", "created" }) public class BounceObject { protected String contactId; protected String deliveryId; protected String type; protected String description; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar created; /** * Gets the value of the contactId property. * * @return * possible object is * {@link String } * */ public String getContactId() { return contactId; } /** * Sets the value of the contactId property. * * @param value * allowed object is * {@link String } * */ public void setContactId(String value) { this.contactId = value; } /** * Gets the value of the deliveryId property. * * @return * possible object is * {@link String } * */ public String getDeliveryId() { return deliveryId; } /** * Sets the value of the deliveryId property. * * @param value * allowed object is * {@link String } * */ public void setDeliveryId(String value) { this.deliveryId = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the created property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreated() { return created; } /** * Sets the value of the created property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreated(XMLGregorianCalendar value) { this.created = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy