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

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

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

 * <complexType name="PaymentInstrumentSearchBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
 *       <sequence>
 *         <element name="customer" 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="paymentInstrumentType" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchEnumMultiSelectField" minOccurs="0"/>
 *         <element name="preserveOnFile" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaymentInstrumentSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "customer", "internalId", "internalIdNumber", "isInactive", "paymentInstrumentType", "preserveOnFile" }) public class PaymentInstrumentSearchBasic extends SearchRecordBasic { protected SearchMultiSelectField customer; protected SearchMultiSelectField internalId; protected SearchLongField internalIdNumber; protected SearchBooleanField isInactive; protected SearchEnumMultiSelectField paymentInstrumentType; protected SearchBooleanField preserveOnFile; /** * Gets the value of the customer property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getCustomer() { return customer; } /** * Sets the value of the customer property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setCustomer(SearchMultiSelectField value) { this.customer = 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 paymentInstrumentType property. * * @return * possible object is * {@link SearchEnumMultiSelectField } * */ public SearchEnumMultiSelectField getPaymentInstrumentType() { return paymentInstrumentType; } /** * Sets the value of the paymentInstrumentType property. * * @param value * allowed object is * {@link SearchEnumMultiSelectField } * */ public void setPaymentInstrumentType(SearchEnumMultiSelectField value) { this.paymentInstrumentType = value; } /** * Gets the value of the preserveOnFile property. * * @return * possible object is * {@link SearchBooleanField } * */ public SearchBooleanField getPreserveOnFile() { return preserveOnFile; } /** * Sets the value of the preserveOnFile property. * * @param value * allowed object is * {@link SearchBooleanField } * */ public void setPreserveOnFile(SearchBooleanField value) { this.preserveOnFile = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy