Type Alias ContactsGetUsersContactDetailsResponse

ContactsGetUsersContactDetailsResponse: {
    direct_numbers?: string[];
    email?: string;
    extension_number?: string;
    first_name?: string;
    id?: string;
    last_name?: 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"
    | "In_A_Meeting"
    | "In_A_Call"
    | "In_A_Calendar_Event"
    | "Presenting"
    | "Out_of_Office"
    | "Busy";
}