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

com.univapay.sdk.models.response.merchant.PaidyTransactionData 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.PaidyBrand;

public class PaidyTransactionData extends PaymentTransactionData {

  private final String cardholderEmailAddress;

  private final String cardholderPhoneNumber;

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

  public String getCardholderEmailAddress() {
    return cardholderEmailAddress;
  }

  public String getCardholderPhoneNumber() {
    return cardholderPhoneNumber;
  }

  public PaidyBrand getBrand() {
    return PaidyBrand.getInstanceByLiteralValueNullable(brand);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy