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

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

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

 * <complexType name="CustomRecordTypeTranslations">
 *   <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="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomRecordTypeTranslations", namespace = "urn:customization_2017_1.setup.webservices.netsuite.com", propOrder = { "locale", "localeDescription", "name" }) public class CustomRecordTypeTranslations implements Serializable { @XmlSchemaType(name = "string") protected Language locale; protected String localeDescription; protected String name; /** * 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 name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy