com.fedapay.utile.FedaPayModel 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.utile;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonProperty;
public class FedaPayModel {
@JsonProperty
protected T data;
public FedaPayModel() {
super();
}
public FedaPayModel(T data, Map meta) {
super();
this.data = data;
}
public T getData() {
return data;
}
public void setData(T data) {
this.data = data;
}
}