
tsg.ns.wsdl.coop.Preferences 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 Preferences complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Preferences">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="warningAsError" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="disableMandatoryCustomFieldValidation" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="disableSystemNotesForCustomFields" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="ignoreReadOnlyFields" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="runServerSuiteScriptAndTriggerWorkflows" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Preferences", namespace = "urn:messages_2023_1.platform.webservices.netsuite.com", propOrder = {
"warningAsError",
"disableMandatoryCustomFieldValidation",
"disableSystemNotesForCustomFields",
"ignoreReadOnlyFields",
"runServerSuiteScriptAndTriggerWorkflows"
})
public class Preferences {
protected Boolean warningAsError;
protected Boolean disableMandatoryCustomFieldValidation;
protected Boolean disableSystemNotesForCustomFields;
protected Boolean ignoreReadOnlyFields;
protected Boolean runServerSuiteScriptAndTriggerWorkflows;
/**
* Gets the value of the warningAsError property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isWarningAsError() {
return warningAsError;
}
/**
* Sets the value of the warningAsError property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setWarningAsError(Boolean value) {
this.warningAsError = value;
}
/**
* Gets the value of the disableMandatoryCustomFieldValidation property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDisableMandatoryCustomFieldValidation() {
return disableMandatoryCustomFieldValidation;
}
/**
* Sets the value of the disableMandatoryCustomFieldValidation property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDisableMandatoryCustomFieldValidation(Boolean value) {
this.disableMandatoryCustomFieldValidation = value;
}
/**
* Gets the value of the disableSystemNotesForCustomFields property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDisableSystemNotesForCustomFields() {
return disableSystemNotesForCustomFields;
}
/**
* Sets the value of the disableSystemNotesForCustomFields property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDisableSystemNotesForCustomFields(Boolean value) {
this.disableSystemNotesForCustomFields = value;
}
/**
* Gets the value of the ignoreReadOnlyFields property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIgnoreReadOnlyFields() {
return ignoreReadOnlyFields;
}
/**
* Sets the value of the ignoreReadOnlyFields property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIgnoreReadOnlyFields(Boolean value) {
this.ignoreReadOnlyFields = value;
}
/**
* Gets the value of the runServerSuiteScriptAndTriggerWorkflows property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isRunServerSuiteScriptAndTriggerWorkflows() {
return runServerSuiteScriptAndTriggerWorkflows;
}
/**
* Sets the value of the runServerSuiteScriptAndTriggerWorkflows property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setRunServerSuiteScriptAndTriggerWorkflows(Boolean value) {
this.runServerSuiteScriptAndTriggerWorkflows = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy