com.fedapay.model.TransactionToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fedapay-java Show documentation
Show all versions of fedapay-java Show documentation
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;
}
}