com.github.GBSEcom.simple.MerchantCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of first-data-gateway Show documentation
Show all versions of first-data-gateway Show documentation
Java SDK to be used with a First Data Gateway account. This SDK has been created and packaged to offer the easiest way to integrate your application into the First Data Gateway. This SDK gives you the ability to run transactions such as sales, preauthorizations, postauthorizations, credits, voids, and returns; transaction inquiries; setting up scheduled payments and much more.
package com.github.GBSEcom.simple;
import lombok.AllArgsConstructor;
import lombok.Getter;
@AllArgsConstructor
@Getter
public class MerchantCredentials {
public static MerchantCredentials of(final String apiSecret, final String apiKey) {
return new MerchantCredentials(apiSecret, apiKey);
}
private final String apiSecret;
private final String apiKey;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy