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

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

package com.github.debugthug.xo.booking;

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

@XStreamAlias("Payment")
public class Payment {
	
	@XStreamAsAttribute
	@XStreamAlias("PaymentType")
	private String paymentType;
	
	@XStreamAsAttribute
	@XStreamAlias("PaymentInfo1")
	private String paymentInfo1;
	
	@XStreamAsAttribute
	@XStreamAlias("PaymentInfo2")
	private String paymentInfo2;
	
	@XStreamAsAttribute
	@XStreamAlias("PaymentInfo3")
	private String paymentInfo3;
	
	@XStreamAsAttribute
	@XStreamAlias("PaymentInfo4")
	private String paymentInfo4;
	
	@XStreamAsAttribute
	@XStreamAlias("PaymentCharges")
	private String paymentCharges;
	
	@XStreamAsAttribute
	@XStreamAlias("AmountPaid")
	private Double amountPaid;

	public String getPaymentType() {
		return paymentType;
	}

	public void setPaymentType(String paymentType) {
		this.paymentType = paymentType;
	}

	public String getPaymentInfo1() {
		return paymentInfo1;
	}

	public void setPaymentInfo1(String paymentInfo1) {
		this.paymentInfo1 = paymentInfo1;
	}

	public String getPaymentInfo2() {
		return paymentInfo2;
	}

	public void setPaymentInfo2(String paymentInfo2) {
		this.paymentInfo2 = paymentInfo2;
	}

	public String getPaymentInfo3() {
		return paymentInfo3;
	}

	public void setPaymentInfo3(String paymentInfo3) {
		this.paymentInfo3 = paymentInfo3;
	}

	public String getPaymentInfo4() {
		return paymentInfo4;
	}

	public void setPaymentInfo4(String paymentInfo4) {
		this.paymentInfo4 = paymentInfo4;
	}

	public String getPaymentCharges() {
		return paymentCharges;
	}

	public void setPaymentCharges(String paymentCharges) {
		this.paymentCharges = paymentCharges;
	}

	public double getAmountPaid() {
		return amountPaid;
	}

	public void setAmountPaid(double amountPaid) {
		this.amountPaid = amountPaid;
	}
	
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy