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

com.braintreegateway.PaymentMethodNonceDetailsPayerInfo 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 PaymentMethodNonceDetailsPayerInfo {
    private String email;
    private String firstName;
    private String lastName;
    private String payerId;
    private String countryCode;
    private Address billingAddress;
    private Address shippingAddress;

    public PaymentMethodNonceDetailsPayerInfo(NodeWrapper node) {
        email = node.findString("email");
        firstName = node.findString("first-name");
        lastName = node.findString("last-name");
        payerId = node.findString("payer-id");
        countryCode = node.findString("country-code");

        NodeWrapper billingAddressNode = node.findFirst("billing-address");

        if (billingAddressNode != null && !billingAddressNode.isBlank()) {
            billingAddress = new Address(billingAddressNode);
        }

        NodeWrapper shippingAddressNode = node.findFirst("shipping-address");

        if (shippingAddressNode != null && !shippingAddressNode.isBlank()) {
            shippingAddress = new Address(shippingAddressNode);
        }
    }

    public PaymentMethodNonceDetailsPayerInfo(Map map) {
        email = map.get("email");
        firstName = map.get("first-name");
        lastName = map.get("last-name");
        payerId = map.get("payer-id");
        countryCode = map.get("country-code");
    }

    public String getEmail() {
        return email;
    }

    public String getFirstName() {
        return firstName;
    }

    public String getLastName() {
        return lastName;
    }

    public String getPayerId() {
        return payerId;
    }

    public String getCountryCode() {
        return countryCode;
    }

    public Address getBillingAddress() {
        return billingAddress;
    }

    public Address getShippingAddress() {
        return shippingAddress;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy