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

com.braintreegateway.AchMandate 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.Calendar;

public class AchMandate {

    private String text;
    private Calendar acceptedAt;

    public AchMandate(NodeWrapper node) {
        text = node.findString("text");
        acceptedAt = node.findDate("accepted-at");
    }

    public String getText() {
        return text;
    }

    public Calendar getAcceptedAt() {
        return acceptedAt;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy