
com.bronto.api.model.ConversionObject Maven / Gradle / Ivy
The newest version!
package com.bronto.api.model;
import java.math.BigDecimal;
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 conversionObject complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="conversionObject">
* <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="contactId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="orderId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="item" 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="quantity" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="amount" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="orderTotal" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="createdDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="deliveryId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="messageId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="automatorId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="listId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="segmentId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="deliveryType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="tid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "conversionObject", propOrder = {
"id",
"contactId",
"email",
"orderId",
"item",
"description",
"quantity",
"amount",
"orderTotal",
"createdDate",
"deliveryId",
"messageId",
"automatorId",
"listId",
"segmentId",
"deliveryType",
"tid"
})
public class ConversionObject {
protected String id;
protected String contactId;
protected String email;
protected String orderId;
protected String item;
protected String description;
protected Integer quantity;
protected BigDecimal amount;
protected BigDecimal orderTotal;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar createdDate;
protected String deliveryId;
protected String messageId;
protected String automatorId;
protected String listId;
protected String segmentId;
protected String deliveryType;
protected String tid;
/**
* 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 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 email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}
/**
* Gets the value of the orderId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrderId() {
return orderId;
}
/**
* Sets the value of the orderId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrderId(String value) {
this.orderId = value;
}
/**
* Gets the value of the item property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getItem() {
return item;
}
/**
* Sets the value of the item property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setItem(String value) {
this.item = 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 quantity property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getQuantity() {
return quantity;
}
/**
* Sets the value of the quantity property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setQuantity(Integer value) {
this.quantity = value;
}
/**
* Gets the value of the amount property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getAmount() {
return amount;
}
/**
* Sets the value of the amount property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setAmount(BigDecimal value) {
this.amount = value;
}
/**
* Gets the value of the orderTotal property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getOrderTotal() {
return orderTotal;
}
/**
* Sets the value of the orderTotal property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setOrderTotal(BigDecimal value) {
this.orderTotal = 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 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 messageId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessageId() {
return messageId;
}
/**
* Sets the value of the messageId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessageId(String value) {
this.messageId = value;
}
/**
* Gets the value of the automatorId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAutomatorId() {
return automatorId;
}
/**
* Sets the value of the automatorId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAutomatorId(String value) {
this.automatorId = value;
}
/**
* Gets the value of the listId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getListId() {
return listId;
}
/**
* Sets the value of the listId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setListId(String value) {
this.listId = value;
}
/**
* Gets the value of the segmentId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSegmentId() {
return segmentId;
}
/**
* Sets the value of the segmentId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSegmentId(String value) {
this.segmentId = value;
}
/**
* Gets the value of the deliveryType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDeliveryType() {
return deliveryType;
}
/**
* Sets the value of the deliveryType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDeliveryType(String value) {
this.deliveryType = value;
}
/**
* Gets the value of the tid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTid() {
return tid;
}
/**
* Sets the value of the tid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTid(String value) {
this.tid = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy