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

com.braintreegateway.LiabilityShift Maven / Gradle / Ivy

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

import java.util.List;

import com.braintreegateway.util.NodeWrapper;

public class LiabilityShift {

    private String responsibleParty;
    private List conditions;

    public LiabilityShift(NodeWrapper node) {
      responsibleParty = node.findString("responsible-party");
      conditions = node.findAllStrings("conditions");
    }

    public String getResponsibleParty() {
        return responsibleParty;
    }

    public List getConditions() {
        return conditions;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy