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

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

package com.github.debugthug.xo.booking;

import com.github.debugthug.xo.StrInput;
import com.thoughtworks.xstream.annotations.XStreamAlias;

@XStreamAlias("CreateBooking")
public class CreateBooking {
	
	@XStreamAlias("xmlns")
	private String xmlns;
	
	@XStreamAlias("strinput")
	private StrInput strInput;

	public String getXmlns() {
		return xmlns;
	}

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

	public StrInput getStrInput() {
		return strInput;
	}

	public void setStrInput(StrInput strInput) {
		this.strInput = strInput;
	}
	
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy