
tsg.ns.wsdl.coop.CampaignSubscription 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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for CampaignSubscription complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CampaignSubscription">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}Record">
* <sequence>
* <element name="name" 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="subscribedByDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="unsubscribed" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="externalName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="externalDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="isInactive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* <attribute name="internalId" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="externalId" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CampaignSubscription", namespace = "urn:marketing_2023_1.lists.webservices.netsuite.com", propOrder = {
"name",
"description",
"subscribedByDefault",
"unsubscribed",
"externalName",
"externalDescription",
"isInactive"
})
public class CampaignSubscription
extends Record
{
protected String name;
protected String description;
protected Boolean subscribedByDefault;
protected Boolean unsubscribed;
protected String externalName;
protected String externalDescription;
protected Boolean isInactive;
@XmlAttribute(name = "internalId")
protected String internalId;
@XmlAttribute(name = "externalId")
protected String externalId;
/**
* 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 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 subscribedByDefault property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSubscribedByDefault() {
return subscribedByDefault;
}
/**
* Sets the value of the subscribedByDefault property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSubscribedByDefault(Boolean value) {
this.subscribedByDefault = value;
}
/**
* Gets the value of the unsubscribed property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isUnsubscribed() {
return unsubscribed;
}
/**
* Sets the value of the unsubscribed property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setUnsubscribed(Boolean value) {
this.unsubscribed = value;
}
/**
* Gets the value of the externalName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExternalName() {
return externalName;
}
/**
* Sets the value of the externalName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExternalName(String value) {
this.externalName = value;
}
/**
* Gets the value of the externalDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExternalDescription() {
return externalDescription;
}
/**
* Sets the value of the externalDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExternalDescription(String value) {
this.externalDescription = value;
}
/**
* Gets the value of the isInactive property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsInactive() {
return isInactive;
}
/**
* Sets the value of the isInactive property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsInactive(Boolean value) {
this.isInactive = value;
}
/**
* Gets the value of the internalId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInternalId() {
return internalId;
}
/**
* Sets the value of the internalId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInternalId(String value) {
this.internalId = value;
}
/**
* Gets the value of the externalId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExternalId() {
return externalId;
}
/**
* Sets the value of the externalId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExternalId(String value) {
this.externalId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy