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

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


/**
 * 

Java class for State complex type. * *

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

 * <complexType name="State">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}Record">
 *       <sequence>
 *         <element name="country" type="{urn:types.common_2023_1.platform.webservices.netsuite.com}Country" minOccurs="0"/>
 *         <element name="fullName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="shortname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="internalId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "State", propOrder = { "country", "fullName", "shortname" }) public class State extends Record { @XmlSchemaType(name = "string") protected Country country; protected String fullName; protected String shortname; @XmlAttribute(name = "internalId") protected String internalId; /** * Gets the value of the country property. * * @return * possible object is * {@link Country } * */ public Country getCountry() { return country; } /** * Sets the value of the country property. * * @param value * allowed object is * {@link Country } * */ public void setCountry(Country value) { this.country = value; } /** * Gets the value of the fullName property. * * @return * possible object is * {@link String } * */ public String getFullName() { return fullName; } /** * Sets the value of the fullName property. * * @param value * allowed object is * {@link String } * */ public void setFullName(String value) { this.fullName = value; } /** * Gets the value of the shortname property. * * @return * possible object is * {@link String } * */ public String getShortname() { return shortname; } /** * Sets the value of the shortname property. * * @param value * allowed object is * {@link String } * */ public void setShortname(String value) { this.shortname = value; } /** * Gets the value of the internalId property. * * @return * possible object is * {@link String } * */ public String getInternalId() { return internalId; } /** * Sets the value of the internalId property. * * @param value * allowed object is * {@link String } * */ public void setInternalId(String value) { this.internalId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy