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

com.braintreegateway.AuthenticationInsight Maven / Gradle / Ivy

There is a newer version: 3.32.0_1
Show newest version
package com.braintreegateway;

import com.braintreegateway.util.NodeWrapper;
import java.util.Map;

public class AuthenticationInsight {

    private String regulationEnvironment;
    private String scaIndicator;
    private String message;

    public AuthenticationInsight(NodeWrapper node) {
        regulationEnvironment = node.findString("regulation-environment");
        scaIndicator = node.findString("sca-indicator");
        message = node.findString("message");
    }

    public AuthenticationInsight(Map map) {
        regulationEnvironment = (String) map.get("regulationEnvironment");
        scaIndicator = (String) map.get("scaIndicator");
        message = (String) map.get("message");
    }

    public String getRegulationEnvironment() {
        return regulationEnvironment;
    }

    public String getScaIndicator() {
        return scaIndicator;
    }

    public String getMessage() {
        return message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy