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

com.global.api.gateways.bill_pay.IBillPayRequest Maven / Gradle / Ivy

There is a newer version: 14.2.3
Show newest version
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);
}