jp.gopay.sdk.models.common.GopayBase64 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gopay-java-sdk Show documentation
Show all versions of gopay-java-sdk Show documentation
Official Gyro-n Payments Java SDK
package jp.gopay.sdk.models.common;
import java.util.Objects;
public class GopayBase64 {
private final String base64;
public GopayBase64(String base64) {
this.base64 = base64;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GopayBase64 that = (GopayBase64) o;
return Objects.equals(base64, that.base64);
}
@Override
public int hashCode() {
return Objects.hash(base64);
}
@Override
public String toString() {
return base64;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy