
tsg.ns.wsdl.coop.GetCustomizationIdRequest 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.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for GetCustomizationIdRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GetCustomizationIdRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="customizationType" type="{urn:core_2023_1.platform.webservices.netsuite.com}CustomizationType"/>
* <element name="includeInactives" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GetCustomizationIdRequest", namespace = "urn:messages_2023_1.platform.webservices.netsuite.com", propOrder = {
"customizationType",
"includeInactives"
})
public class GetCustomizationIdRequest {
@XmlElement(required = true)
protected CustomizationType customizationType;
protected boolean includeInactives;
/**
* Gets the value of the customizationType property.
*
* @return
* possible object is
* {@link CustomizationType }
*
*/
public CustomizationType getCustomizationType() {
return customizationType;
}
/**
* Sets the value of the customizationType property.
*
* @param value
* allowed object is
* {@link CustomizationType }
*
*/
public void setCustomizationType(CustomizationType value) {
this.customizationType = value;
}
/**
* Gets the value of the includeInactives property.
*
*/
public boolean isIncludeInactives() {
return includeInactives;
}
/**
* Sets the value of the includeInactives property.
*
*/
public void setIncludeInactives(boolean value) {
this.includeInactives = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy