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

io.paymenthighway.formBuilders.PaymentParameters Maven / Gradle / Ivy

There is a newer version: 2.1.1.1
Show newest version
package io.paymenthighway.formBuilders;

public class PaymentParameters
  extends GenericPaymentParametersBuilder
  implements CardFormParametersInterface {

    public PaymentParameters(
      String method,
      String signatureKeyId,
      String signatureSecret,
      String account,
      String merchant,
      String baseUrl,
      String successUrl,
      String failureUrl,
      String cancelUrl,
      String amount,
      String currency,
      String orderId,
      String description
    ) {
        super(method, signatureKeyId, signatureSecret, account, merchant, baseUrl, successUrl, failureUrl, cancelUrl, amount, currency, orderId, description);
        serviceUri = "/form/view/pay_with_card";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy