com.checkout.accounts.Representative Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of checkout-sdk-java Show documentation
Show all versions of checkout-sdk-java Show documentation
Checkout SDK for Java https://checkout.com
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