All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tsg.ns.wsdl.coop.BillingScheduleSearchBasic 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 BillingScheduleSearchBasic complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="BillingScheduleSearchBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
 *       <sequence>
 *         <element name="applyToSubtotal" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
 *         <element name="externalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="externalIdString" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="frequency" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchEnumMultiSelectField" minOccurs="0"/>
 *         <element name="inArrears" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
 *         <element name="initialAmount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
 *         <element name="initialTerms" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="internalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="internalIdNumber" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchLongField" minOccurs="0"/>
 *         <element name="isInactive" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
 *         <element name="isPublic" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
 *         <element name="name" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="recurrenceCount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchLongField" minOccurs="0"/>
 *         <element name="recurrencePattern" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchEnumMultiSelectField" minOccurs="0"/>
 *         <element name="recurrenceTerms" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="repeatEvery" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchLongField" minOccurs="0"/>
 *         <element name="type" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchEnumMultiSelectField" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BillingScheduleSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "applyToSubtotal", "externalId", "externalIdString", "frequency", "inArrears", "initialAmount", "initialTerms", "internalId", "internalIdNumber", "isInactive", "isPublic", "name", "recurrenceCount", "recurrencePattern", "recurrenceTerms", "repeatEvery", "type" }) public class BillingScheduleSearchBasic extends SearchRecordBasic { protected SearchBooleanField applyToSubtotal; protected SearchMultiSelectField externalId; protected SearchStringField externalIdString; protected SearchEnumMultiSelectField frequency; protected SearchBooleanField inArrears; protected SearchDoubleField initialAmount; protected SearchMultiSelectField initialTerms; protected SearchMultiSelectField internalId; protected SearchLongField internalIdNumber; protected SearchBooleanField isInactive; protected SearchBooleanField isPublic; protected SearchStringField name; protected SearchLongField recurrenceCount; protected SearchEnumMultiSelectField recurrencePattern; protected SearchMultiSelectField recurrenceTerms; protected SearchLongField repeatEvery; protected SearchEnumMultiSelectField type; /** * Gets the value of the applyToSubtotal property. * * @return * possible object is * {@link SearchBooleanField } * */ public SearchBooleanField getApplyToSubtotal() { return applyToSubtotal; } /** * Sets the value of the applyToSubtotal property. * * @param value * allowed object is * {@link SearchBooleanField } * */ public void setApplyToSubtotal(SearchBooleanField value) { this.applyToSubtotal = value; } /** * Gets the value of the externalId property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getExternalId() { return externalId; } /** * Sets the value of the externalId property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setExternalId(SearchMultiSelectField value) { this.externalId = value; } /** * Gets the value of the externalIdString property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getExternalIdString() { return externalIdString; } /** * Sets the value of the externalIdString property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setExternalIdString(SearchStringField value) { this.externalIdString = value; } /** * Gets the value of the frequency property. * * @return * possible object is * {@link SearchEnumMultiSelectField } * */ public SearchEnumMultiSelectField getFrequency() { return frequency; } /** * Sets the value of the frequency property. * * @param value * allowed object is * {@link SearchEnumMultiSelectField } * */ public void setFrequency(SearchEnumMultiSelectField value) { this.frequency = value; } /** * Gets the value of the inArrears property. * * @return * possible object is * {@link SearchBooleanField } * */ public SearchBooleanField getInArrears() { return inArrears; } /** * Sets the value of the inArrears property. * * @param value * allowed object is * {@link SearchBooleanField } * */ public void setInArrears(SearchBooleanField value) { this.inArrears = value; } /** * Gets the value of the initialAmount property. * * @return * possible object is * {@link SearchDoubleField } * */ public SearchDoubleField getInitialAmount() { return initialAmount; } /** * Sets the value of the initialAmount property. * * @param value * allowed object is * {@link SearchDoubleField } * */ public void setInitialAmount(SearchDoubleField value) { this.initialAmount = value; } /** * Gets the value of the initialTerms property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getInitialTerms() { return initialTerms; } /** * Sets the value of the initialTerms property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setInitialTerms(SearchMultiSelectField value) { this.initialTerms = value; } /** * Gets the value of the internalId property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getInternalId() { return internalId; } /** * Sets the value of the internalId property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setInternalId(SearchMultiSelectField value) { this.internalId = value; } /** * Gets the value of the internalIdNumber property. * * @return * possible object is * {@link SearchLongField } * */ public SearchLongField getInternalIdNumber() { return internalIdNumber; } /** * Sets the value of the internalIdNumber property. * * @param value * allowed object is * {@link SearchLongField } * */ public void setInternalIdNumber(SearchLongField value) { this.internalIdNumber = value; } /** * Gets the value of the isInactive property. * * @return * possible object is * {@link SearchBooleanField } * */ public SearchBooleanField getIsInactive() { return isInactive; } /** * Sets the value of the isInactive property. * * @param value * allowed object is * {@link SearchBooleanField } * */ public void setIsInactive(SearchBooleanField value) { this.isInactive = value; } /** * Gets the value of the isPublic property. * * @return * possible object is * {@link SearchBooleanField } * */ public SearchBooleanField getIsPublic() { return isPublic; } /** * Sets the value of the isPublic property. * * @param value * allowed object is * {@link SearchBooleanField } * */ public void setIsPublic(SearchBooleanField value) { this.isPublic = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setName(SearchStringField value) { this.name = value; } /** * Gets the value of the recurrenceCount property. * * @return * possible object is * {@link SearchLongField } * */ public SearchLongField getRecurrenceCount() { return recurrenceCount; } /** * Sets the value of the recurrenceCount property. * * @param value * allowed object is * {@link SearchLongField } * */ public void setRecurrenceCount(SearchLongField value) { this.recurrenceCount = value; } /** * Gets the value of the recurrencePattern property. * * @return * possible object is * {@link SearchEnumMultiSelectField } * */ public SearchEnumMultiSelectField getRecurrencePattern() { return recurrencePattern; } /** * Sets the value of the recurrencePattern property. * * @param value * allowed object is * {@link SearchEnumMultiSelectField } * */ public void setRecurrencePattern(SearchEnumMultiSelectField value) { this.recurrencePattern = value; } /** * Gets the value of the recurrenceTerms property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getRecurrenceTerms() { return recurrenceTerms; } /** * Sets the value of the recurrenceTerms property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setRecurrenceTerms(SearchMultiSelectField value) { this.recurrenceTerms = value; } /** * Gets the value of the repeatEvery property. * * @return * possible object is * {@link SearchLongField } * */ public SearchLongField getRepeatEvery() { return repeatEvery; } /** * Sets the value of the repeatEvery property. * * @param value * allowed object is * {@link SearchLongField } * */ public void setRepeatEvery(SearchLongField value) { this.repeatEvery = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link SearchEnumMultiSelectField } * */ public SearchEnumMultiSelectField getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link SearchEnumMultiSelectField } * */ public void setType(SearchEnumMultiSelectField value) { this.type = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy