com.checkout.accounts.Company 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 Company {
@SerializedName("business_registration_number")
private String businessRegistrationNumber;
@SerializedName("business_type")
private BusinessType businessType;
@SerializedName("legal_name")
private String legalName;
@SerializedName("trading_name")
private String tradingName;
@SerializedName("principal_address")
private Address principalAddress;
@SerializedName("registered_address")
private Address registeredAddress;
private EntityDocument document;
private List representatives;
@SerializedName("financial_details")
private EntityFinancialDetails financialDetails;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy