Functions/Get-MSPCompleteUserPropertyList.ps1

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

function Get-MSPCompleteUserPropertyList {
    # Return the list of properties
    return @(
        "FirstName",
        "LastName",
        "DisplayName",
        "FullName",
        "PrimaryEmailAddress",
        "UserPrincipalName"
    )
}