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

io.paymenthighway.model.response.Acquirer Maven / Gradle / Ivy

There is a newer version: 2.1.1.1
Show newest version
package io.paymenthighway.model.response;

/**
 * Acquirer POJO
 */
public class Acquirer {
  String id;
  String name;

  public Acquirer() {
  }

  public Acquirer(String id, String name) {
    this.id = id;
    this.name = name;
  }

  public String getId() {
    return id;
  }

  public String getName() {
    return name;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy