Functions/Get-MSPCompleteUserExtendedPropertyList.ps1

<#
.SYNOPSIS
    This function returns a list of the extended properties present in an MSPComplete User object.
#>

function Get-MSPCompleteUserExtendedPropertyList {
    # Return the list of properties
    return @(
        "AddressLine1",
        "AddressLine2",
        "City",
        "StateOrProvince",
        "PostalOrZipCode",
        "CountryOrRegion",
        "MobilePhoneNumber",
        "TelephoneNumber",
        "CompanyName",
        "Department",
        "JobTitle",
        "Salutation",
        "ManagerEmailAddress",
        "Fax",
        "Office",
        "OnPremisesSecurityIdentifier",
        "DistinguishedName",
        "GSuiteUserID"
    )
}