
tsg.ns.wsdl.coop.JobCreditCards Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for JobCreditCards complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="JobCreditCards">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="internalId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ccNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ccExpireDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="ccName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="paymentMethod" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="ccMemo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ccDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="debitCardIssueNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="validFrom" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "JobCreditCards", namespace = "urn:relationships_2023_1.lists.webservices.netsuite.com", propOrder = {
"internalId",
"ccNumber",
"ccExpireDate",
"ccName",
"paymentMethod",
"ccMemo",
"ccDefault",
"debitCardIssueNo",
"validFrom"
})
public class JobCreditCards {
protected String internalId;
protected String ccNumber;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar ccExpireDate;
protected String ccName;
protected RecordRef paymentMethod;
protected String ccMemo;
protected Boolean ccDefault;
protected String debitCardIssueNo;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar validFrom;
/**
* Gets the value of the internalId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInternalId() {
return internalId;
}
/**
* Sets the value of the internalId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInternalId(String value) {
this.internalId = value;
}
/**
* Gets the value of the ccNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCcNumber() {
return ccNumber;
}
/**
* Sets the value of the ccNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCcNumber(String value) {
this.ccNumber = value;
}
/**
* Gets the value of the ccExpireDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCcExpireDate() {
return ccExpireDate;
}
/**
* Sets the value of the ccExpireDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCcExpireDate(XMLGregorianCalendar value) {
this.ccExpireDate = value;
}
/**
* Gets the value of the ccName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCcName() {
return ccName;
}
/**
* Sets the value of the ccName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCcName(String value) {
this.ccName = value;
}
/**
* Gets the value of the paymentMethod property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getPaymentMethod() {
return paymentMethod;
}
/**
* Sets the value of the paymentMethod property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setPaymentMethod(RecordRef value) {
this.paymentMethod = value;
}
/**
* Gets the value of the ccMemo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCcMemo() {
return ccMemo;
}
/**
* Sets the value of the ccMemo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCcMemo(String value) {
this.ccMemo = value;
}
/**
* Gets the value of the ccDefault property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isCcDefault() {
return ccDefault;
}
/**
* Sets the value of the ccDefault property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setCcDefault(Boolean value) {
this.ccDefault = value;
}
/**
* Gets the value of the debitCardIssueNo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDebitCardIssueNo() {
return debitCardIssueNo;
}
/**
* Sets the value of the debitCardIssueNo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDebitCardIssueNo(String value) {
this.debitCardIssueNo = value;
}
/**
* Gets the value of the validFrom property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getValidFrom() {
return validFrom;
}
/**
* Sets the value of the validFrom property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setValidFrom(XMLGregorianCalendar value) {
this.validFrom = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy