Functions/Get-MSPCompleteUserToGSuiteUserExtendedPropertyMap.ps1

<#
.SYNOPSIS
    This function returns a hash table that maps MSPComplete user extended properties to
    GSuite user properties
#>

function Get-MSPCompleteUserToGSuiteUserExtendedPropertyMap {
    # Return the map of properties
    return @{
        CompanyName  = "organizations.name"
        Department   = "organizations.department"
        JobTitle     = "organizations.title"
        GSuiteUserID = "id"
    }
}