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

ru.tinkoff.acquiring.sdk.responses.GetAddCardStateResponse Maven / Gradle / Ivy

package ru.tinkoff.acquiring.sdk.responses;

import com.google.gson.annotations.SerializedName;

import ru.tinkoff.acquiring.sdk.PaymentStatus;

/**
 * @author Vitaliy Markus
 */

public class GetAddCardStateResponse extends AcquiringResponse {

    @SerializedName("RequestKey")
    private String requestKey;

    @SerializedName("Status")
    private PaymentStatus status;

    @SerializedName("CardId")
    private String cardId;

    @SerializedName("RebillId")
    private String rebillId;

    public String getRequestKey() {
        return requestKey;
    }

    public PaymentStatus getStatus() {
        return status;
    }

    public String getCardId() {
        return cardId;
    }

    public String getRebillId() {
        return rebillId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy