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

com.fedapay.model.TransactionToken Maven / Gradle / Ivy

Go to download

Cette librairie permettra de faire les requetes HTTP de Fedapay dans un projet Java.

The newest version!
package com.fedapay.model;

import com.fasterxml.jackson.annotation.JsonProperty;


public class TransactionToken {

	@JsonProperty("token")
	public String token;
	
	@JsonProperty("url")
	public String securePaymentLink;

	public TransactionToken() {
		super();
		// TODO Auto-generated constructor stub
	}

	public String getToken() {
		return token;
	}

	public void setToken(String token) {
		this.token = token;
	}

	public String getSecurePaymentLink() {
		return securePaymentLink;
	}

	public void setSecurePaymentLink(String securePaymentLink) {
		this.securePaymentLink = securePaymentLink;
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy