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

com.checkout.accounts.Representative 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;

import java.util.List;

@Data
@Builder
public final class Representative {

    @SerializedName("first_name")
    private String firstName;

    @SerializedName("middle_name")
    private String middleName;

    @SerializedName("last_name")
    private String lastName;

    private Address address;

    private Identification identification;

    private AccountPhone phone;

    @SerializedName("date_of_birth")
    private DateOfBirth dateOfBirth;

    @SerializedName("place_of_birth")
    private PlaceOfBirth placeOfBirth;

    private List roles;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy