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

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

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

 * <complexType name="CustomerDownload">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="file" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="licenseCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="remainingDownloads" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="expiration" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomerDownload", namespace = "urn:relationships_2023_1.lists.webservices.netsuite.com", propOrder = { "file", "licenseCode", "remainingDownloads", "expiration" }) public class CustomerDownload { protected RecordRef file; protected String licenseCode; protected Long remainingDownloads; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expiration; /** * Gets the value of the file property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getFile() { return file; } /** * Sets the value of the file property. * * @param value * allowed object is * {@link RecordRef } * */ public void setFile(RecordRef value) { this.file = value; } /** * Gets the value of the licenseCode property. * * @return * possible object is * {@link String } * */ public String getLicenseCode() { return licenseCode; } /** * Sets the value of the licenseCode property. * * @param value * allowed object is * {@link String } * */ public void setLicenseCode(String value) { this.licenseCode = value; } /** * Gets the value of the remainingDownloads property. * * @return * possible object is * {@link Long } * */ public Long getRemainingDownloads() { return remainingDownloads; } /** * Sets the value of the remainingDownloads property. * * @param value * allowed object is * {@link Long } * */ public void setRemainingDownloads(Long value) { this.remainingDownloads = value; } /** * Gets the value of the expiration property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpiration() { return expiration; } /** * Sets the value of the expiration property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpiration(XMLGregorianCalendar value) { this.expiration = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy