com.payu.sdk.api.model.request.Request 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;
import com.payu.sdk.api.model.Language;
public class Request {
private boolean test = false;
private Language language;
private Command command;
private Merchant merchant;
public Request() {
}
public Request(Merchant merchant) {
this.merchant = merchant;
}
public boolean isTest() {
return test;
}
public void setTest(boolean test) {
this.test = test;
}
public Language getLanguage() {
return language;
}
public void setLanguage(Language language) {
this.language = language;
}
public Command getCommand() {
return command;
}
public void setCommand(Command command) {
this.command = command;
}
public Merchant getMerchant() {
return merchant;
}
public void setMerchant(Merchant merchant) {
this.merchant = merchant;
}
}