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

com.mercadopago.client.payment.PaymentAuthenticationRequest Maven / Gradle / Ivy

There is a newer version: 2.1.29
Show newest version
package com.mercadopago.client.payment;

import lombok.Builder;
import lombok.Getter;

/** PaymentAuthenticationRequest class. */
@Getter
@Builder
public class PaymentAuthenticationRequest {
    /** Type. */
    private final String type;

    /** Cryptogram. */
    private final String cryptogram;

    /** 3DS Server Trans ID. */
    private final String threeDsServerTransId;

    /** ECI. */
    private final String eci;

    /** 3DS Trans ID. */
    private final String dsTransId;

    /** ACS Trans ID. */
    private final String acsTransId;

    /** 3DS Version. */
    private final String threeDsVersion;

    /** Authentication Status. */
    private final String authenticationStatus;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy