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

com.checkout.payments.PaymentRecipient Maven / Gradle / Ivy

There is a newer version: 6.4.2
Show newest version
package com.checkout.payments;

import com.checkout.common.Address;
import com.checkout.common.CountryCode;
import com.google.gson.annotations.SerializedName;
import lombok.Builder;
import lombok.Data;

@Data
@Builder
public final class PaymentRecipient {

    @SerializedName("dob")
    private String dateOfBirth;

    @SerializedName("account_number")
    private String accountNumber;

    private Address address;

    private String zip;

    @SerializedName("first_name")
    private String firstName;

    @SerializedName("last_name")
    private String lastName;

    private CountryCode country;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy