com.univapay.sdk.models.response.transactiontoken.OnlinePaymentData Maven / Gradle / Ivy
package com.univapay.sdk.models.response.transactiontoken;
import com.univapay.sdk.models.common.CallMethod;
import com.univapay.sdk.types.brand.OnlineBrand;
/** This represents the online payment data for the TransactionToken response */
public class OnlinePaymentData {
private final OnlineBrand brand;
private final String issuerToken;
private final CallMethod callMethod;
private final String userIdentifier;
public OnlinePaymentData(
OnlineBrand brand, String issuerToken, CallMethod callMethod, String userIdentifier) {
this.brand = brand;
this.issuerToken = issuerToken;
this.callMethod = callMethod;
this.userIdentifier = userIdentifier;
}
public OnlineBrand getBrand() {
return brand;
}
public String getIssuerToken() {
return issuerToken;
}
public CallMethod getCallMethod() {
return callMethod;
}
public String getUserIdentifier() {
return userIdentifier;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy