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

com.bytekast.netsuite.client.CustomFieldTranslations 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CustomFieldTranslations complex type. * *

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

 * <complexType name="CustomFieldTranslations">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="locale" type="{urn:types.common_2017_1.platform.webservices.netsuite.com}Language" minOccurs="0"/>
 *         <element name="localeDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="help" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomFieldTranslations", namespace = "urn:customization_2017_1.setup.webservices.netsuite.com", propOrder = { "locale", "localeDescription", "label", "help" }) public class CustomFieldTranslations implements Serializable { @XmlSchemaType(name = "string") protected Language locale; protected String localeDescription; protected String label; protected String help; /** * Gets the value of the locale property. * * @return * possible object is * {@link Language } * */ public Language getLocale() { return locale; } /** * Sets the value of the locale property. * * @param value * allowed object is * {@link Language } * */ public void setLocale(Language value) { this.locale = value; } /** * Gets the value of the localeDescription property. * * @return * possible object is * {@link String } * */ public String getLocaleDescription() { return localeDescription; } /** * Sets the value of the localeDescription property. * * @param value * allowed object is * {@link String } * */ public void setLocaleDescription(String value) { this.localeDescription = value; } /** * Gets the value of the label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } /** * Gets the value of the help property. * * @return * possible object is * {@link String } * */ public String getHelp() { return help; } /** * Sets the value of the help property. * * @param value * allowed object is * {@link String } * */ public void setHelp(String value) { this.help = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy