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

com.braintreegateway.SettlementBatchSummary Maven / Gradle / Ivy

package com.braintreegateway;

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

public class SettlementBatchSummary {

    private List> records;

    public SettlementBatchSummary(NodeWrapper node) {
        records = new ArrayList>();
        
        for (NodeWrapper record : node.findAll("records/record")) {
            records.add(record.findMap("*"));
        }
    }

    public List> getRecords() {
        return records;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy