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

org.iata.ndc.schema.ServiceClass Maven / Gradle / Ivy

The newest version!

package org.iata.ndc.schema;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://www.iata.org/IATA/EDIST}DataListObjectBaseType">
 *       <sequence>
 *         <element name="Code" type="{http://www.iata.org/IATA/EDIST}Flight_COS_SimpleType" minOccurs="0"/>
 *         <element name="MarketingName" type="{http://www.iata.org/IATA/EDIST}ProperNameSimpleType" minOccurs="0"/>
 *         <element name="Associations" type="{http://www.iata.org/IATA/EDIST}COS_AssocType" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "code", "marketingName", "associations" }) public class ServiceClass extends DataListObjectBaseType { @XmlElement(name = "Code") protected String code; @XmlElement(name = "MarketingName") protected String marketingName; @XmlElement(name = "Associations") protected COSAssocType associations; /** * Gets the value of the code property. * * @return * possible object is * {@link String } * */ public String getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link String } * */ public void setCode(String value) { this.code = value; } /** * Gets the value of the marketingName property. * * @return * possible object is * {@link String } * */ public String getMarketingName() { return marketingName; } /** * Sets the value of the marketingName property. * * @param value * allowed object is * {@link String } * */ public void setMarketingName(String value) { this.marketingName = value; } /** * Gets the value of the associations property. * * @return * possible object is * {@link COSAssocType } * */ public COSAssocType getAssociations() { return associations; } /** * Sets the value of the associations property. * * @param value * allowed object is * {@link COSAssocType } * */ public void setAssociations(COSAssocType value) { this.associations = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy