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

jp.gopay.sdk.models.common.GopayBase64 Maven / Gradle / Ivy

There is a newer version: 0.11.17
Show newest version
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