Type Alias ContactsSearchCompanyContactsResponse

ContactsSearchCompanyContactsResponse: {
    contacts?: {
        activity?: "Active" | "Inactive" | "Unknown";
        contact_type?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
        dept?: string;
        direct_numbers?: string[];
        display_name?: string;
        email?: string;
        extension_number?: string;
        first_name?: string;
        id?: string;
        im_group_id?: string;
        im_group_name?: string;
        job_title?: string;
        last_name?: string;
        location?: string;
        member_id?: string;
        phone_number?: string;
        phone_numbers?: {
            code?: string;
            country?: string;
            label?: "Mobile" | "Office" | "Home" | "Fax";
            number?: string;
            verified?: boolean;
        }[];
        presence_status?: "Do_Not_Disturb"
        | "Away"
        | "Available"
        | "Offline";
        sip_phone_number?: string;
        sip_uri?: string;
        user_status?: "active" | "inactive";
    }[];
    next_page_token?: string;
    page_size?: number;
}