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

com.ean.wsapi.hotel.v3.RoomImage Maven / Gradle / Ivy


package com.ean.wsapi.hotel.v3;

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 RoomImage complex type. * *

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

 * <complexType name="RoomImage">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="roomTypeCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RoomImage", propOrder = { "roomTypeCode", "url" }) public class RoomImage { @XmlElement(required = true) protected String roomTypeCode; @XmlElement(required = true) protected String url; /** * Gets the value of the roomTypeCode property. * * @return * possible object is * {@link String } * */ public String getRoomTypeCode() { return roomTypeCode; } /** * Sets the value of the roomTypeCode property. * * @param value * allowed object is * {@link String } * */ public void setRoomTypeCode(String value) { this.roomTypeCode = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy