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

com.bytekast.netsuite.client.CustomRecordTypeForms Maven / Gradle / Ivy

The newest version!

package com.bytekast.netsuite.client;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CustomRecordTypeForms complex type. * *

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

 * <complexType name="CustomRecordTypeForms">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="formEdit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="formName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="formPref" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomRecordTypeForms", namespace = "urn:customization_2017_1.setup.webservices.netsuite.com", propOrder = { "formEdit", "formName", "formPref" }) public class CustomRecordTypeForms implements Serializable { protected String formEdit; protected String formName; protected Boolean formPref; /** * Gets the value of the formEdit property. * * @return * possible object is * {@link String } * */ public String getFormEdit() { return formEdit; } /** * Sets the value of the formEdit property. * * @param value * allowed object is * {@link String } * */ public void setFormEdit(String value) { this.formEdit = value; } /** * Gets the value of the formName property. * * @return * possible object is * {@link String } * */ public String getFormName() { return formName; } /** * Sets the value of the formName property. * * @param value * allowed object is * {@link String } * */ public void setFormName(String value) { this.formName = value; } /** * Gets the value of the formPref property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFormPref() { return formPref; } /** * Sets the value of the formPref property. * * @param value * allowed object is * {@link Boolean } * */ public void setFormPref(Boolean value) { this.formPref = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy