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

com.bytekast.netsuite.client.CustomRecordTypeChildren 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 CustomRecordTypeChildren complex type. * *

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

 * <complexType name="CustomRecordTypeChildren">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="childDescr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="childTab" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomRecordTypeChildren", namespace = "urn:customization_2017_1.setup.webservices.netsuite.com", propOrder = { "childDescr", "childTab" }) public class CustomRecordTypeChildren implements Serializable { protected String childDescr; protected RecordRef childTab; /** * Gets the value of the childDescr property. * * @return * possible object is * {@link String } * */ public String getChildDescr() { return childDescr; } /** * Sets the value of the childDescr property. * * @param value * allowed object is * {@link String } * */ public void setChildDescr(String value) { this.childDescr = value; } /** * Gets the value of the childTab property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getChildTab() { return childTab; } /** * Sets the value of the childTab property. * * @param value * allowed object is * {@link RecordRef } * */ public void setChildTab(RecordRef value) { this.childTab = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy