export ContactInfo

interface ContactInfo {
    account_id?: null | string;
    address?: Location;
    avatar_url?: null | string;
    contact_status?: ContactStatusPersona;
    created_at?: string;
    display_name?: null | string;
    dob?: DOB;
    email_addresses?: null | Email[];
    email_invite_message?: null | string;
    first_name?: null | string;
    has_existing_account?: boolean;
    id?: null | string;
    inviting_contact?: InvitingContact;
    is_contact?: boolean;
    known_name?: null | string;
    last_name?: null | string;
    last_payment_at?: null | string;
    middle_initial?: null | string;
    phone_numbers?: null | Phone[];
    short_bio?: null | string;
    short_id?: null | string;
    title?: null | string;
    user_account_id?: null | string;
    user_id?: null | string;
}

Properties

account_id?: null | string
address?: Location
avatar_url?: null | string
contact_status?: ContactStatusPersona
created_at?: string
display_name?: null | string
dob?: DOB
email_addresses?: null | Email[]
email_invite_message?: null | string
first_name?: null | string
has_existing_account?: boolean
id?: null | string
inviting_contact?: InvitingContact
is_contact?: boolean
known_name?: null | string
last_name?: null | string
last_payment_at?: null | string
middle_initial?: null | string
phone_numbers?: null | Phone[]
short_bio?: null | string
short_id?: null | string
title?: null | string
user_account_id?: null | string

The primary AccountId of this Persona, Created when a contact is first invited or added to the platform and is guaranteed unique and may be present before UserId which is only available once the invited user has been fully on-boarded

user_id?: null | string