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

tsg.ns.wsdl.coop.Translation 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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for Translation complex type. * *

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

 * <complexType name="Translation">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="locale" type="{urn:types.common_2023_1.platform.webservices.netsuite.com}Language" minOccurs="0"/>
 *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="salesDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="storeDisplayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="storeDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="storeDetailedDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="featuredDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="specialsDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="pageTitle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="noPriceMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="outOfStockMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Translation", propOrder = { "locale", "language", "displayName", "description", "salesDescription", "storeDisplayName", "storeDescription", "storeDetailedDescription", "featuredDescription", "specialsDescription", "pageTitle", "noPriceMessage", "outOfStockMessage" }) public class Translation { @XmlSchemaType(name = "string") protected Language locale; protected String language; protected String displayName; protected String description; protected String salesDescription; protected String storeDisplayName; protected String storeDescription; protected String storeDetailedDescription; protected String featuredDescription; protected String specialsDescription; protected String pageTitle; protected String noPriceMessage; protected String outOfStockMessage; /** * 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 language property. * * @return * possible object is * {@link String } * */ public String getLanguage() { return language; } /** * Sets the value of the language property. * * @param value * allowed object is * {@link String } * */ public void setLanguage(String value) { this.language = value; } /** * Gets the value of the displayName property. * * @return * possible object is * {@link String } * */ public String getDisplayName() { return displayName; } /** * Sets the value of the displayName property. * * @param value * allowed object is * {@link String } * */ public void setDisplayName(String value) { this.displayName = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the salesDescription property. * * @return * possible object is * {@link String } * */ public String getSalesDescription() { return salesDescription; } /** * Sets the value of the salesDescription property. * * @param value * allowed object is * {@link String } * */ public void setSalesDescription(String value) { this.salesDescription = value; } /** * Gets the value of the storeDisplayName property. * * @return * possible object is * {@link String } * */ public String getStoreDisplayName() { return storeDisplayName; } /** * Sets the value of the storeDisplayName property. * * @param value * allowed object is * {@link String } * */ public void setStoreDisplayName(String value) { this.storeDisplayName = value; } /** * Gets the value of the storeDescription property. * * @return * possible object is * {@link String } * */ public String getStoreDescription() { return storeDescription; } /** * Sets the value of the storeDescription property. * * @param value * allowed object is * {@link String } * */ public void setStoreDescription(String value) { this.storeDescription = value; } /** * Gets the value of the storeDetailedDescription property. * * @return * possible object is * {@link String } * */ public String getStoreDetailedDescription() { return storeDetailedDescription; } /** * Sets the value of the storeDetailedDescription property. * * @param value * allowed object is * {@link String } * */ public void setStoreDetailedDescription(String value) { this.storeDetailedDescription = value; } /** * Gets the value of the featuredDescription property. * * @return * possible object is * {@link String } * */ public String getFeaturedDescription() { return featuredDescription; } /** * Sets the value of the featuredDescription property. * * @param value * allowed object is * {@link String } * */ public void setFeaturedDescription(String value) { this.featuredDescription = value; } /** * Gets the value of the specialsDescription property. * * @return * possible object is * {@link String } * */ public String getSpecialsDescription() { return specialsDescription; } /** * Sets the value of the specialsDescription property. * * @param value * allowed object is * {@link String } * */ public void setSpecialsDescription(String value) { this.specialsDescription = value; } /** * Gets the value of the pageTitle property. * * @return * possible object is * {@link String } * */ public String getPageTitle() { return pageTitle; } /** * Sets the value of the pageTitle property. * * @param value * allowed object is * {@link String } * */ public void setPageTitle(String value) { this.pageTitle = value; } /** * Gets the value of the noPriceMessage property. * * @return * possible object is * {@link String } * */ public String getNoPriceMessage() { return noPriceMessage; } /** * Sets the value of the noPriceMessage property. * * @param value * allowed object is * {@link String } * */ public void setNoPriceMessage(String value) { this.noPriceMessage = value; } /** * Gets the value of the outOfStockMessage property. * * @return * possible object is * {@link String } * */ public String getOutOfStockMessage() { return outOfStockMessage; } /** * Sets the value of the outOfStockMessage property. * * @param value * allowed object is * {@link String } * */ public void setOutOfStockMessage(String value) { this.outOfStockMessage = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy