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

com.riskified.models.ChargeFreePaymentDetails Maven / Gradle / Ivy

The newest version!
package com.riskified.models;

public class ChargeFreePaymentDetails {

	private String gateway;
	private Double amount;
	
	public ChargeFreePaymentDetails(String gateway, Double amount) {
		this.gateway = gateway;
		this.amount = amount;
	}

	public String getGateway() {
		return gateway;
	}

	public void setGateway(String gateway) {
		this.gateway = gateway;
	}

	public Double getAmount() {
		return amount;
	}

	public void setAmount(Double amount) {
		this.amount = amount;
	}
	
	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy