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

com.payu.sdk.api.model.request.Request Maven / Gradle / Ivy

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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy