
tsg.ns.wsdl.coop.CampaignResponseResponses Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for CampaignResponseResponses complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CampaignResponseResponses">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="response" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="responseDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="author" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="note" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CampaignResponseResponses", namespace = "urn:marketing_2023_1.lists.webservices.netsuite.com", propOrder = {
"response",
"responseDate",
"author",
"note"
})
public class CampaignResponseResponses {
protected String response;
protected String responseDate;
protected String author;
protected String note;
/**
* Gets the value of the response property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getResponse() {
return response;
}
/**
* Sets the value of the response property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setResponse(String value) {
this.response = value;
}
/**
* Gets the value of the responseDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getResponseDate() {
return responseDate;
}
/**
* Sets the value of the responseDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setResponseDate(String value) {
this.responseDate = value;
}
/**
* Gets the value of the author property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAuthor() {
return author;
}
/**
* Sets the value of the author property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAuthor(String value) {
this.author = value;
}
/**
* Gets the value of the note property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNote() {
return note;
}
/**
* Sets the value of the note property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNote(String value) {
this.note = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy