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

com.checkout.accounts.Individual Maven / Gradle / Ivy

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

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

@Data
@Builder
public final class Individual {

    @SerializedName("first_name")
    private String firstName;

    @SerializedName("middle_name")
    private String middleName;

    @SerializedName("last_name")
    private String lastName;

    @SerializedName("trading_name")
    private String tradingName;

    @SerializedName("national_tax_id")
    private String nationalTaxId;

    @SerializedName("registered_address")
    private Address registeredAddress;

    @SerializedName("date_of_birth")
    private DateOfBirth dateOfBirth;

    @SerializedName("place_of_birth")
    private PlaceOfBirth placeOfBirth;

    private Identification identification;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy