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

com.github.debugthug.xo.booking.CreateBookingResponse Maven / Gradle / Ivy

package com.github.debugthug.xo.booking;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;

@XStreamAlias("CreateBookingResponse")
public class CreateBookingResponse {

	@XStreamAsAttribute
	@XStreamAlias("xmlns")
	private String xmlns;
	
	@XStreamAlias("CreateBookingResult")
	private CreateBookingResult createBookingResult;

	public String getXmlns() {
		return xmlns;
	}

	public void setXmlns(String xmlns) {
		this.xmlns = xmlns;
	}

	public CreateBookingResult getCreateBookingResult() {
		return createBookingResult;
	}

	public void setCreateBookingResult(CreateBookingResult createBookingResult) {
		this.createBookingResult = createBookingResult;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy