Functions/Get-MSPCompleteCustomerPropertyList.ps1
<#
.SYNOPSIS This function returns a list of the properties present in an MSPComplete Customer object. #> function Get-MSPCompleteCustomerPropertyList { # Return the list of properties return @( "CompanyName", "PrimaryDomain", "CountryName", "StateProvinceName", "CityName", "CompanySizeBucket", "IndustryType" ) } |