export Tenant

interface Tenant {
    account_id?: null | string;
    address?: AddressDeets;
    business_details?: IUserBusinessDeets;
    business_name?: null | string;
    capabilities?: TenantCapabilities;
    country_code?: null | string;
    dob?: null | string;
    email_address?: null | string;
    entity_type?: EntityType;
    federal_tax_id?: null | string;
    first_name?: null | string;
    id?: null | string;
    individual_details?: IUserIndividualDeets;
    is_new?: boolean;
    last_name?: null | string;
    phone?: null | string;
    provider_accounts?: null | ProviderAccount[];
    status?: TenantStatus;
    verification?: UserStatusVerification;
}

Properties

account_id?: null | string
address?: AddressDeets
business_details?: IUserBusinessDeets
business_name?: null | string

Business Name

capabilities?: TenantCapabilities
country_code?: null | string

Country code

dob?: null | string

The birthdate of the account holder

email_address?: null | string
entity_type?: EntityType
federal_tax_id?: null | string

Federal Tax Identifier / SSN of the account holder

first_name?: null | string

First name of the account holder

id?: null | string

Tenant User ID

individual_details?: IUserIndividualDeets
is_new?: boolean

True if the account was created

last_name?: null | string

Last name of the account holder

phone?: null | string

Phone number of the account holder

provider_accounts?: null | ProviderAccount[]

Returns the external accounts that the tenant is linked to.

status?: TenantStatus
verification?: UserStatusVerification