com.payu.sdk.api.model.mobile.DeviceIdentifierResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
A fresh implementation of the PayU API Client for Android
The newest version!
package com.payu.sdk.api.model.mobile;
import com.payu.sdk.api.model.CreditCard;
import com.payu.sdk.api.model.response.Response;
import com.payu.sdk.api.model.termsconditions.TermsConditionsVersion;
import java.util.List;
public class DeviceIdentifierResponse extends Response {
private String installationId;
private List termsConditionsVersions;
private List creditCards;
private List installments;
private List paymentMethods;
public String getInstallationId() {
return installationId;
}
public List getTermsConditionsVersions() {
return termsConditionsVersions;
}
public List creditCards() {
return creditCards;
}
public List getInstallments() {
return installments;
}
public List getPaymentMethods() {
return paymentMethods;
}
}