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

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

package com.github.debugthug.xo.booking;

import com.thoughtworks.xstream.annotations.XStreamAlias;

@XStreamAlias("PaymentInfo")
public class PaymentInfo {
	
	@XStreamAlias("Payment")
	private Payment payment;
	
	@XStreamAlias("Card")
	private Card card;

	public Payment getPayment() {
		return payment;
	}

	public void setPayment(Payment payment) {
		this.payment = payment;
	}

	public Card getCard() {
		return card;
	}

	public void setCard(Card card) {
		this.card = card;
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy