Type Alias UsersListPhoneUsersResponse

UsersListPhoneUsersResponse: {
    next_page_token?: string;
    page_size?: number;
    total_records?: number;
    users?: {
        calling_plans?: {
            billing_account_id?: string;
            billing_account_name?: string;
            name?: string;
            type?: number;
        }[];
        cost_center?: string;
        department?: string;
        email?: string;
        extension_id?: string;
        extension_number?: number;
        id?: string;
        name?: string;
        phone_numbers?: { id?: string; number?: string }[];
        phone_user_id?: string;
        site?: { id?: string; name?: string };
        status?: string;
    }[];
}