io.paymenthighway.model.response.Acquirer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paymenthighway Show documentation
Show all versions of paymenthighway Show documentation
Payment Highway Java API Library
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;
}
}