Class OrderType
Java class for OrderType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="OrderType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="OrderID" type="{http://www.iata.org/IATA/2015/00/2018.2/IATA_ServiceDeliveryNotifRQ}ID_Type"/>
<element name="OrderItem" type="{http://www.iata.org/IATA/2015/00/2018.2/IATA_ServiceDeliveryNotifRQ}OrderItemType" maxOccurs="unbounded"/>
<element name="PaymentInfo" type="{http://www.iata.org/IATA/2015/00/2018.2/IATA_ServiceDeliveryNotifRQ}PaymentInfoType" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Stringprotected List<OrderItemType>protected List<PaymentInfoType> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the orderID property.Gets the value of the orderItem property.Gets the value of the paymentInfo property.voidsetOrderID(String value) Sets the value of the orderID property.
-
Field Details
-
orderID
-
orderItem
-
paymentInfo
-
-
Constructor Details
-
OrderType
public OrderType()
-
-
Method Details
-
getOrderID
Gets the value of the orderID property.- Returns:
- possible object is
String
-
setOrderID
Sets the value of the orderID property.- Parameters:
value- allowed object isString
-
getOrderItem
Gets the value of the orderItem property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the orderItem property.For example, to add a new item, do as follows:
getOrderItem().add(newItem);Objects of the following type(s) are allowed in the list
OrderItemType -
getPaymentInfo
Gets the value of the paymentInfo property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the paymentInfo property.For example, to add a new item, do as follows:
getPaymentInfo().add(newItem);Objects of the following type(s) are allowed in the list
PaymentInfoType
-