
tsg.ns.wsdl.coop.GiftCertificateSearchBasic 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 GiftCertificateSearchBasic complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GiftCertificateSearchBasic">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
* <sequence>
* <element name="amountAvailableBilled" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="amountRemaining" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="createdDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDateField" minOccurs="0"/>
* <element name="email" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="expirationDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDateField" minOccurs="0"/>
* <element name="giftCertCode" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="incomeAccount" 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="isActive" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
* <element name="item" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="liabilityAccount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="message" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="name" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="originalAmount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="purchaseDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDateField" minOccurs="0"/>
* <element name="sender" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="customFieldList" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchCustomFieldList" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GiftCertificateSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = {
"amountAvailableBilled",
"amountRemaining",
"createdDate",
"email",
"expirationDate",
"giftCertCode",
"incomeAccount",
"internalId",
"internalIdNumber",
"isActive",
"item",
"liabilityAccount",
"message",
"name",
"originalAmount",
"purchaseDate",
"sender",
"customFieldList"
})
public class GiftCertificateSearchBasic
extends SearchRecordBasic
{
protected SearchDoubleField amountAvailableBilled;
protected SearchDoubleField amountRemaining;
protected SearchDateField createdDate;
protected SearchStringField email;
protected SearchDateField expirationDate;
protected SearchStringField giftCertCode;
protected SearchMultiSelectField incomeAccount;
protected SearchMultiSelectField internalId;
protected SearchLongField internalIdNumber;
protected SearchBooleanField isActive;
protected SearchMultiSelectField item;
protected SearchMultiSelectField liabilityAccount;
protected SearchStringField message;
protected SearchStringField name;
protected SearchDoubleField originalAmount;
protected SearchDateField purchaseDate;
protected SearchStringField sender;
protected SearchCustomFieldList customFieldList;
/**
* Gets the value of the amountAvailableBilled property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getAmountAvailableBilled() {
return amountAvailableBilled;
}
/**
* Sets the value of the amountAvailableBilled property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setAmountAvailableBilled(SearchDoubleField value) {
this.amountAvailableBilled = value;
}
/**
* Gets the value of the amountRemaining property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getAmountRemaining() {
return amountRemaining;
}
/**
* Sets the value of the amountRemaining property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setAmountRemaining(SearchDoubleField value) {
this.amountRemaining = value;
}
/**
* Gets the value of the createdDate property.
*
* @return
* possible object is
* {@link SearchDateField }
*
*/
public SearchDateField getCreatedDate() {
return createdDate;
}
/**
* Sets the value of the createdDate property.
*
* @param value
* allowed object is
* {@link SearchDateField }
*
*/
public void setCreatedDate(SearchDateField value) {
this.createdDate = value;
}
/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setEmail(SearchStringField value) {
this.email = value;
}
/**
* Gets the value of the expirationDate property.
*
* @return
* possible object is
* {@link SearchDateField }
*
*/
public SearchDateField getExpirationDate() {
return expirationDate;
}
/**
* Sets the value of the expirationDate property.
*
* @param value
* allowed object is
* {@link SearchDateField }
*
*/
public void setExpirationDate(SearchDateField value) {
this.expirationDate = value;
}
/**
* Gets the value of the giftCertCode property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getGiftCertCode() {
return giftCertCode;
}
/**
* Sets the value of the giftCertCode property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setGiftCertCode(SearchStringField value) {
this.giftCertCode = value;
}
/**
* Gets the value of the incomeAccount property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getIncomeAccount() {
return incomeAccount;
}
/**
* Sets the value of the incomeAccount property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setIncomeAccount(SearchMultiSelectField value) {
this.incomeAccount = 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 isActive property.
*
* @return
* possible object is
* {@link SearchBooleanField }
*
*/
public SearchBooleanField getIsActive() {
return isActive;
}
/**
* Sets the value of the isActive property.
*
* @param value
* allowed object is
* {@link SearchBooleanField }
*
*/
public void setIsActive(SearchBooleanField value) {
this.isActive = value;
}
/**
* Gets the value of the item property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getItem() {
return item;
}
/**
* Sets the value of the item property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setItem(SearchMultiSelectField value) {
this.item = value;
}
/**
* Gets the value of the liabilityAccount property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getLiabilityAccount() {
return liabilityAccount;
}
/**
* Sets the value of the liabilityAccount property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setLiabilityAccount(SearchMultiSelectField value) {
this.liabilityAccount = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setMessage(SearchStringField value) {
this.message = 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 originalAmount property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getOriginalAmount() {
return originalAmount;
}
/**
* Sets the value of the originalAmount property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setOriginalAmount(SearchDoubleField value) {
this.originalAmount = value;
}
/**
* Gets the value of the purchaseDate property.
*
* @return
* possible object is
* {@link SearchDateField }
*
*/
public SearchDateField getPurchaseDate() {
return purchaseDate;
}
/**
* Sets the value of the purchaseDate property.
*
* @param value
* allowed object is
* {@link SearchDateField }
*
*/
public void setPurchaseDate(SearchDateField value) {
this.purchaseDate = value;
}
/**
* Gets the value of the sender property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getSender() {
return sender;
}
/**
* Sets the value of the sender property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setSender(SearchStringField value) {
this.sender = value;
}
/**
* Gets the value of the customFieldList property.
*
* @return
* possible object is
* {@link SearchCustomFieldList }
*
*/
public SearchCustomFieldList getCustomFieldList() {
return customFieldList;
}
/**
* Sets the value of the customFieldList property.
*
* @param value
* allowed object is
* {@link SearchCustomFieldList }
*
*/
public void setCustomFieldList(SearchCustomFieldList value) {
this.customFieldList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy