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

jp.gopay.sdk.models.request.authentication.AuthenticationRequestData Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy