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

jp.gopay.sdk.models.request.transactiontoken.UpdateReq Maven / Gradle / Ivy

There is a newer version: 0.11.17
Show newest version
package jp.gopay.sdk.models.request.transactiontoken;

import com.google.gson.annotations.SerializedName;
import jp.gopay.sdk.models.common.GoPayEmailAddress;
import jp.gopay.sdk.types.MetadataMap;

public class UpdateReq {
    @SerializedName("email")
    private GoPayEmailAddress email;

    @SerializedName("metadata")
    private MetadataMap metadata;

    @SerializedName("data")
    private UpdateCreditCardReq cardData;

    public UpdateReq(GoPayEmailAddress email, MetadataMap metadata, Integer cvv) {
        this.email = email;
        this.metadata = metadata;
        this.cardData = new UpdateCreditCardReq(cvv);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy