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

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


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 unsubscribeObject complex type. * *

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

 * <complexType name="unsubscribeObject">
 *   <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="method" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="complaint" 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 = "unsubscribeObject", propOrder = { "contactId", "deliveryId", "method", "complaint", "created" }) public class UnsubscribeObject { protected String contactId; protected String deliveryId; protected String method; protected String complaint; @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 method property. * * @return * possible object is * {@link String } * */ public String getMethod() { return method; } /** * Sets the value of the method property. * * @param value * allowed object is * {@link String } * */ public void setMethod(String value) { this.method = value; } /** * Gets the value of the complaint property. * * @return * possible object is * {@link String } * */ public String getComplaint() { return complaint; } /** * Sets the value of the complaint property. * * @param value * allowed object is * {@link String } * */ public void setComplaint(String value) { this.complaint = 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