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

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

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

 * <complexType name="FileSiteCategory">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="category" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="categoryDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="website" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FileSiteCategory", namespace = "urn:filecabinet_2023_1.documents.webservices.netsuite.com", propOrder = { "isDefault", "category", "categoryDescription", "website" }) public class FileSiteCategory { protected Boolean isDefault; protected RecordRef category; protected String categoryDescription; protected RecordRef website; /** * Gets the value of the isDefault property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsDefault() { return isDefault; } /** * Sets the value of the isDefault property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsDefault(Boolean value) { this.isDefault = value; } /** * Gets the value of the category property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getCategory() { return category; } /** * Sets the value of the category property. * * @param value * allowed object is * {@link RecordRef } * */ public void setCategory(RecordRef value) { this.category = value; } /** * Gets the value of the categoryDescription property. * * @return * possible object is * {@link String } * */ public String getCategoryDescription() { return categoryDescription; } /** * Sets the value of the categoryDescription property. * * @param value * allowed object is * {@link String } * */ public void setCategoryDescription(String value) { this.categoryDescription = value; } /** * Gets the value of the website property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getWebsite() { return website; } /** * Sets the value of the website property. * * @param value * allowed object is * {@link RecordRef } * */ public void setWebsite(RecordRef value) { this.website = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy