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

com.univapay.sdk.models.response.merchant.QRScanTransactionData Maven / Gradle / Ivy

The newest version!
package com.univapay.sdk.models.response.merchant;

import com.univapay.sdk.types.Gateway;
import com.univapay.sdk.types.brand.QrCpmBrand;

public class QRScanTransactionData extends PaymentTransactionData {
  private final String cardholderEmailAddress;

  QRScanTransactionData(String cardholderEmailAddress, Gateway gateway, String brand) {
    super(gateway, brand);
    this.cardholderEmailAddress = cardholderEmailAddress;
  }

  public String getCardholderEmailAddress() {
    return cardholderEmailAddress;
  }

  @Override
  public QrCpmBrand getBrand() {
    return QrCpmBrand.getInstanceByLiteralValueNullable(brand);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy