jp.gopay.sdk.models.request.authentication.AuthenticationRequestData 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.request.authentication;
import com.google.gson.annotations.SerializedName;
import jp.gopay.sdk.models.common.EmailAddress;
import jp.gopay.sdk.models.common.GoPayEmailAddress;
@SuppressWarnings("FieldCanBeLocal")
public class AuthenticationRequestData {
@SerializedName("password")
private String password;
@SerializedName("email")
private GoPayEmailAddress email;
public AuthenticationRequestData(EmailAddress email, String password) {
this.password = password;
this.email = email;
}
}