com.global.api.gateways.bill_pay.IBillPayRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globalpayments-sdk Show documentation
Show all versions of globalpayments-sdk Show documentation
API for processing payments through Global Payments
package com.global.api.gateways.bill_pay;
import com.global.api.entities.billing.Credentials;
import com.global.api.utils.ElementTree;
public interface IBillPayRequest {
IBillPayRequest build(ElementTree et, T builder, Credentials credentials);
public IBillPayResponse execute();
public IBillPayResponse execute(String endpoint);
}