com.payu.sdk.api.model.request.Merchant 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.request;
public class Merchant {
private String apiLogin;
private String apiKey;
public Merchant() {
}
public Merchant(String apiLogin, String apiKey) {
this.apiLogin = apiLogin;
this.apiKey = apiKey;
}
public String getApiLogin() {
return apiLogin;
}
public void setApiLogin(String apiLogin) {
this.apiLogin = apiLogin;
}
public String getApiKey() {
return apiKey;
}
public void setApiKey(String apiKey) {
this.apiKey = apiKey;
}
}