com.checkout.sessions.CreateSessionAcceptedResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of checkout-sdk-java Show documentation
Show all versions of checkout-sdk-java Show documentation
Checkout SDK for Java https://checkout.com
package com.checkout.sessions;
import com.checkout.common.ChallengeIndicator;
import com.checkout.common.Currency;
import com.checkout.common.Resource;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import java.time.Instant;
import java.util.List;
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public final class CreateSessionAcceptedResponse extends Resource {
private String id;
@SerializedName("session_secret")
private String sessionSecret;
@SerializedName("transaction_id")
private String transactionId;
private SessionScheme scheme;
private Long amount;
private Currency currency;
@SerializedName("authentication_type")
private AuthenticationType authenticationType;
@SerializedName("authentication_category")
private Category authenticationCategory;
private SessionStatus status;
@SerializedName("status_reason")
private StatusReason statusReason;
@SerializedName("next_actions")
private List nextActions;
@SerializedName("protocol_version")
private String protocolVersion;
private String reference;
private CardInfo card;
private Recurring recurring;
private Installment installment;
@SerializedName("authentication_date")
private Instant authenticationDate;
@SerializedName("challenge_indicator")
private ChallengeIndicator challengeIndicator;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy