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

com.braintreegateway.OAuthResult Maven / Gradle / Ivy

The newest version!
package com.braintreegateway;

import com.braintreegateway.util.NodeWrapper;

public class OAuthResult {

    private Boolean result;

    public OAuthResult(NodeWrapper node) {
        result = node.findBoolean("success");
    }

    public Boolean getResult() {
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy