PaymentSDKQueryConfiguration constructor

PaymentSDKQueryConfiguration(
  1. String serverKey,
  2. String clientKey,
  3. String merchantCountryCode,
  4. String profileID,
  5. String transactionReference,
)

Implementation

PaymentSDKQueryConfiguration(
    String serverKey,
    String clientKey,
    String merchantCountryCode,
    String profileID,
    String transactionReference) {
  this.clientKey = clientKey;
  this.merchantCountryCode = merchantCountryCode;
  this.profileID = profileID;
  this.serverKey = serverKey;
  this.transactionReference = transactionReference;
}