<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
/**
 * This file aims to show you how to use this generated package.
 * In addition, the goal is to show which methods are available and the fist needed parameter(s)
 * You have to use an associative array such as:
 * - the key must be a constant beginning with WSDL_ from AbstractSoapClientbase class each generated ServiceType class extends this class
 * - the value must be the corresponding key value (each option matches a {@link http://www.php.net/manual/en/soapclient.soapclient.php} option)
 * $options = array(
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_URL =&gt; 'https://alarmadmin.alarm.com/WebServices/CustomerManagement.asmx?wsdl',
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_TRACE =&gt; true,
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_LOGIN =&gt; 'you_secret_login',
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_PASSWORD =&gt; 'you_secret_password',
 * );
 * etc....
 */
require_once __DIR__ . '/vendor/autoload.php';
/**
 * Minimal options
 */
$options = array(
    \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_URL =&gt; 'https://alarmadmin.alarm.com/WebServices/CustomerManagement.asmx?wsdl',
    \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_CLASSMAP =&gt; \CustomerManagement\ClassMap::get(),
);
/**
 * Samples for Get ServiceType
 */
$get = new \CustomerManagement\ServiceType\Get($options);
$get-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for GetAllLogins_V2 operation/method
 */
if ($get-&gt;GetAllLogins_V2(new \CustomerManagement\StructType\GetAllLogins_V2()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetAllLogins operation/method
 */
if ($get-&gt;GetAllLogins(new \CustomerManagement\StructType\GetAllLogins()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetLoginInfo operation/method
 */
if ($get-&gt;GetLoginInfo(new \CustomerManagement\StructType\GetLoginInfo()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerEnergyProgramEligibility operation/method
 */
if ($get-&gt;GetCustomerEnergyProgramEligibility(new \CustomerManagement\StructType\GetCustomerEnergyProgramEligibility()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetImageSensorLatestCaptureInfo operation/method
 */
if ($get-&gt;GetImageSensorLatestCaptureInfo(new \CustomerManagement\StructType\GetImageSensorLatestCaptureInfo()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetImageSensorUploadsInfo operation/method
 */
if ($get-&gt;GetImageSensorUploadsInfo(new \CustomerManagement\StructType\GetImageSensorUploadsInfo()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetEligibleSensorGroups operation/method
 */
if ($get-&gt;GetEligibleSensorGroups(new \CustomerManagement\StructType\GetEligibleSensorGroups()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetEligibleSensorNames operation/method
 */
if ($get-&gt;GetEligibleSensorNames(new \CustomerManagement\StructType\GetEligibleSensorNames()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetUserCodes operation/method
 */
if ($get-&gt;GetUserCodes(new \CustomerManagement\StructType\GetUserCodes()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetAvailableWifiNetworks operation/method
 */
if ($get-&gt;GetAvailableWifiNetworks(new \CustomerManagement\StructType\GetAvailableWifiNetworks()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerBestPractices operation/method
 */
if ($get-&gt;GetCustomerBestPractices(new \CustomerManagement\StructType\GetCustomerBestPractices()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCommunicationSetting operation/method
 */
if ($get-&gt;GetCommunicationSetting(new \CustomerManagement\StructType\GetCommunicationSetting()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetDualPathCommunicationStatus operation/method
 */
if ($get-&gt;GetDualPathCommunicationStatus(new \CustomerManagement\StructType\GetDualPathCommunicationStatus()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetEventHistory operation/method
 */
if ($get-&gt;GetEventHistory(new \CustomerManagement\StructType\GetEventHistory()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetInstantaneousMode operation/method
 */
if ($get-&gt;GetInstantaneousMode(new \CustomerManagement\StructType\GetInstantaneousMode()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetPendingCommandInfo operation/method
 */
if ($get-&gt;GetPendingCommandInfo(new \CustomerManagement\StructType\GetPendingCommandInfo()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetLatestCallerVersion operation/method
 */
if ($get-&gt;GetLatestCallerVersion(new \CustomerManagement\StructType\GetLatestCallerVersion()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetAllCommitments operation/method
 */
if ($get-&gt;GetAllCommitments(new \CustomerManagement\StructType\GetAllCommitments()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetRefreshToken operation/method
 */
if ($get-&gt;GetRefreshToken(new \CustomerManagement\StructType\GetRefreshToken()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetVoiceAccessLevels operation/method
 */
if ($get-&gt;GetVoiceAccessLevels(new \CustomerManagement\StructType\GetVoiceAccessLevels()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetOnsiteWrapUpStatus operation/method
 */
if ($get-&gt;GetOnsiteWrapUpStatus(new \CustomerManagement\StructType\GetOnsiteWrapUpStatus()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetScheduledAppointment operation/method
 */
if ($get-&gt;GetScheduledAppointment(new \CustomerManagement\StructType\GetScheduledAppointment()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetInteractiveLockoutStatus operation/method
 */
if ($get-&gt;GetInteractiveLockoutStatus(new \CustomerManagement\StructType\GetInteractiveLockoutStatus()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetReturnUrl operation/method
 */
if ($get-&gt;GetReturnUrl(new \CustomerManagement\StructType\GetReturnUrl()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetSolarSystems operation/method
 */
if ($get-&gt;GetSolarSystems(new \CustomerManagement\StructType\GetSolarSystems()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetSolarData operation/method
 */
if ($get-&gt;GetSolarData(new \CustomerManagement\StructType\GetSolarData()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetElectricityProviders operation/method
 */
if ($get-&gt;GetElectricityProviders(new \CustomerManagement\StructType\GetElectricityProviders()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetElectricityPlans operation/method
 */
if ($get-&gt;GetElectricityPlans(new \CustomerManagement\StructType\GetElectricityPlans()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetDeviceNotes operation/method
 */
if ($get-&gt;GetDeviceNotes(new \CustomerManagement\StructType\GetDeviceNotes()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetPendingZwaveDeviceSpecificKeys operation/method
 */
if ($get-&gt;GetPendingZwaveDeviceSpecificKeys(new \CustomerManagement\StructType\GetPendingZwaveDeviceSpecificKeys()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetModemSerialFromIccid operation/method
 */
if ($get-&gt;GetModemSerialFromIccid(new \CustomerManagement\StructType\GetModemSerialFromIccid()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetSimStatusDuringActivation operation/method
 */
if ($get-&gt;GetSimStatusDuringActivation(new \CustomerManagement\StructType\GetSimStatusDuringActivation()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetLastMessageDate operation/method
 */
if ($get-&gt;GetLastMessageDate(new \CustomerManagement\StructType\GetLastMessageDate()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetLastPanelDate operation/method
 */
if ($get-&gt;GetLastPanelDate(new \CustomerManagement\StructType\GetLastPanelDate()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetLastCsEventDate operation/method
 */
if ($get-&gt;GetLastCsEventDate(new \CustomerManagement\StructType\GetLastCsEventDate()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetSignalStrengthSummary operation/method
 */
if ($get-&gt;GetSignalStrengthSummary(new \CustomerManagement\StructType\GetSignalStrengthSummary()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetSignalStrengthHistory operation/method
 */
if ($get-&gt;GetSignalStrengthHistory(new \CustomerManagement\StructType\GetSignalStrengthHistory()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetDeviceList operation/method
 */
if ($get-&gt;GetDeviceList(new \CustomerManagement\StructType\GetDeviceList()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetFullEquipmentList operation/method
 */
if ($get-&gt;GetFullEquipmentList(new \CustomerManagement\StructType\GetFullEquipmentList()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetVideoDeviceInfo operation/method
 */
if ($get-&gt;GetVideoDeviceInfo(new \CustomerManagement\StructType\GetVideoDeviceInfo()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerInfo operation/method
 */
if ($get-&gt;GetCustomerInfo(new \CustomerManagement\StructType\GetCustomerInfo()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerInfo_V2 operation/method
 */
if ($get-&gt;GetCustomerInfo_V2(new \CustomerManagement\StructType\GetCustomerInfo_V2()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerPrice operation/method
 */
if ($get-&gt;GetCustomerPrice(new \CustomerManagement\StructType\GetCustomerPrice()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerTroubleConditions operation/method
 */
if ($get-&gt;GetCustomerTroubleConditions(new \CustomerManagement\StructType\GetCustomerTroubleConditions()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerTroubleConditions_v2 operation/method
 */
if ($get-&gt;GetCustomerTroubleConditions_v2(new \CustomerManagement\StructType\GetCustomerTroubleConditions_v2()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerListWithTroubleConditions operation/method
 */
if ($get-&gt;GetCustomerListWithTroubleConditions(new \CustomerManagement\StructType\GetCustomerListWithTroubleConditions()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerListWithTroubleConditions_v2 operation/method
 */
if ($get-&gt;GetCustomerListWithTroubleConditions_v2(new \CustomerManagement\StructType\GetCustomerListWithTroubleConditions_v2()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerListWithTroubleConditionsCsv operation/method
 */
if ($get-&gt;GetCustomerListWithTroubleConditionsCsv(new \CustomerManagement\StructType\GetCustomerListWithTroubleConditionsCsv()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerListWithTroubleConditionsCsv_v2 operation/method
 */
if ($get-&gt;GetCustomerListWithTroubleConditionsCsv_v2(new \CustomerManagement\StructType\GetCustomerListWithTroubleConditionsCsv_v2()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetResolvedTroubleConditionsCsv operation/method
 */
if ($get-&gt;GetResolvedTroubleConditionsCsv(new \CustomerManagement\StructType\GetResolvedTroubleConditionsCsv()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetSystemCheckResults operation/method
 */
if ($get-&gt;GetSystemCheckResults(new \CustomerManagement\StructType\GetSystemCheckResults()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerListWithPanelSetting operation/method
 */
if ($get-&gt;GetCustomerListWithPanelSetting(new \CustomerManagement\StructType\GetCustomerListWithPanelSetting()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerList operation/method
 */
if ($get-&gt;GetCustomerList(new \CustomerManagement\StructType\GetCustomerList()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerList_V2 operation/method
 */
if ($get-&gt;GetCustomerList_V2(new \CustomerManagement\StructType\GetCustomerList_V2()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerListByBranchId operation/method
 */
if ($get-&gt;GetCustomerListByBranchId(new \CustomerManagement\StructType\GetCustomerListByBranchId()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerListByEmail operation/method
 */
if ($get-&gt;GetCustomerListByEmail(new \CustomerManagement\StructType\GetCustomerListByEmail()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCustomerListByLoginName operation/method
 */
if ($get-&gt;GetCustomerListByLoginName(new \CustomerManagement\StructType\GetCustomerListByLoginName()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetDownloadableSettings operation/method
 */
if ($get-&gt;GetDownloadableSettings(new \CustomerManagement\StructType\GetDownloadableSettings()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetUploadedPanelSettings operation/method
 */
if ($get-&gt;GetUploadedPanelSettings(new \CustomerManagement\StructType\GetUploadedPanelSettings()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetImageSensorInfo operation/method
 */
if ($get-&gt;GetImageSensorInfo(new \CustomerManagement\StructType\GetImageSensorInfo()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetPauseNotificationsForCustomer operation/method
 */
if ($get-&gt;GetPauseNotificationsForCustomer(new \CustomerManagement\StructType\GetPauseNotificationsForCustomer()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetSecurityQuestions operation/method
 */
if ($get-&gt;GetSecurityQuestions(new \CustomerManagement\StructType\GetSecurityQuestions()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Samples for Merge ServiceType
 */
$merge = new \CustomerManagement\ServiceType\Merge($options);
$merge-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for MergeLogins operation/method
 */
if ($merge-&gt;MergeLogins(new \CustomerManagement\StructType\MergeLogins()) !== false) {
    print_r($merge-&gt;getResult());
} else {
    print_r($merge-&gt;getLastError());
}
/**
 * Sample call for MergeLoginsByLoginName operation/method
 */
if ($merge-&gt;MergeLoginsByLoginName(new \CustomerManagement\StructType\MergeLoginsByLoginName()) !== false) {
    print_r($merge-&gt;getResult());
} else {
    print_r($merge-&gt;getLastError());
}
/**
 * Samples for Add ServiceType
 */
$add = new \CustomerManagement\ServiceType\Add($options);
$add-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for AddExistingLogins operation/method
 */
if ($add-&gt;AddExistingLogins(new \CustomerManagement\StructType\AddExistingLogins()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddDefaultNotifications operation/method
 */
if ($add-&gt;AddDefaultNotifications(new \CustomerManagement\StructType\AddDefaultNotifications()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddSensorDevice operation/method
 */
if ($add-&gt;AddSensorDevice(new \CustomerManagement\StructType\AddSensorDevice()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddSensorDeviceFor2Gig operation/method
 */
if ($add-&gt;AddSensorDeviceFor2Gig(new \CustomerManagement\StructType\AddSensorDeviceFor2Gig()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddFobFor2Gig operation/method
 */
if ($add-&gt;AddFobFor2Gig(new \CustomerManagement\StructType\AddFobFor2Gig()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddPeripheral operation/method
 */
if ($add-&gt;AddPeripheral(new \CustomerManagement\StructType\AddPeripheral()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddSensorGetKeyfobProperties operation/method
 */
if ($add-&gt;AddSensorGetKeyfobProperties(new \CustomerManagement\StructType\AddSensorGetKeyfobProperties()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddVideoDevice operation/method
 */
if ($add-&gt;AddVideoDevice(new \CustomerManagement\StructType\AddVideoDevice()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddImageSensor operation/method
 */
if ($add-&gt;AddImageSensor(new \CustomerManagement\StructType\AddImageSensor()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddSensorGetSensorVoiceDescriptors operation/method
 */
if ($add-&gt;AddSensorGetSensorVoiceDescriptors(new \CustomerManagement\StructType\AddSensorGetSensorVoiceDescriptors()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddSensorGetSensorTypes operation/method
 */
if ($add-&gt;AddSensorGetSensorTypes(new \CustomerManagement\StructType\AddSensorGetSensorTypes()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddUserCode operation/method
 */
if ($add-&gt;AddUserCode(new \CustomerManagement\StructType\AddUserCode()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddUpdateZwaveDeviceSpecificKey operation/method
 */
if ($add-&gt;AddUpdateZwaveDeviceSpecificKey(new \CustomerManagement\StructType\AddUpdateZwaveDeviceSpecificKey()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddCustomerToGroup operation/method
 */
if ($add-&gt;AddCustomerToGroup(new \CustomerManagement\StructType\AddCustomerToGroup()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddCustomerLogin operation/method
 */
if ($add-&gt;AddCustomerLogin(new \CustomerManagement\StructType\AddCustomerLogin()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Samples for Create ServiceType
 */
$create = new \CustomerManagement\ServiceType\Create($options);
$create-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for CreateNewCustomerWebsiteMessage operation/method
 */
if ($create-&gt;CreateNewCustomerWebsiteMessage(new \CustomerManagement\StructType\CreateNewCustomerWebsiteMessage()) !== false) {
    print_r($create-&gt;getResult());
} else {
    print_r($create-&gt;getLastError());
}
/**
 * Sample call for CreateScheduledAppointment operation/method
 */
if ($create-&gt;CreateScheduledAppointment(new \CustomerManagement\StructType\CreateScheduledAppointment()) !== false) {
    print_r($create-&gt;getResult());
} else {
    print_r($create-&gt;getLastError());
}
/**
 * Sample call for CreateSolarConnection operation/method
 */
if ($create-&gt;CreateSolarConnection(new \CustomerManagement\StructType\CreateSolarConnection()) !== false) {
    print_r($create-&gt;getResult());
} else {
    print_r($create-&gt;getLastError());
}
/**
 * Sample call for CreateCustomer operation/method
 */
if ($create-&gt;CreateCustomer(new \CustomerManagement\StructType\CreateCustomer()) !== false) {
    print_r($create-&gt;getResult());
} else {
    print_r($create-&gt;getLastError());
}
/**
 * Sample call for CreateCommitment operation/method
 */
if ($create-&gt;CreateCommitment(new \CustomerManagement\StructType\CreateCommitment()) !== false) {
    print_r($create-&gt;getResult());
} else {
    print_r($create-&gt;getLastError());
}
/**
 * Sample call for CreateCommitmentForDealer operation/method
 */
if ($create-&gt;CreateCommitmentForDealer(new \CustomerManagement\StructType\CreateCommitmentForDealer()) !== false) {
    print_r($create-&gt;getResult());
} else {
    print_r($create-&gt;getLastError());
}
/**
 * Sample call for CreateCustomerForDealer operation/method
 */
if ($create-&gt;CreateCustomerForDealer(new \CustomerManagement\StructType\CreateCustomerForDealer()) !== false) {
    print_r($create-&gt;getResult());
} else {
    print_r($create-&gt;getLastError());
}
/**
 * Sample call for CreateEnterpriseGroup operation/method
 */
if ($create-&gt;CreateEnterpriseGroup(new \CustomerManagement\StructType\CreateEnterpriseGroup()) !== false) {
    print_r($create-&gt;getResult());
} else {
    print_r($create-&gt;getLastError());
}
/**
 * Sample call for CreateImageSensorAutoUploadRule operation/method
 */
if ($create-&gt;CreateImageSensorAutoUploadRule(new \CustomerManagement\StructType\CreateImageSensorAutoUploadRule()) !== false) {
    print_r($create-&gt;getResult());
} else {
    print_r($create-&gt;getLastError());
}
/**
 * Samples for Delete ServiceType
 */
$delete = new \CustomerManagement\ServiceType\Delete($options);
$delete-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for DeleteCustomerWebsiteMessage operation/method
 */
if ($delete-&gt;DeleteCustomerWebsiteMessage(new \CustomerManagement\StructType\DeleteCustomerWebsiteMessage()) !== false) {
    print_r($delete-&gt;getResult());
} else {
    print_r($delete-&gt;getLastError());
}
/**
 * Sample call for DeleteSensorDevice operation/method
 */
if ($delete-&gt;DeleteSensorDevice(new \CustomerManagement\StructType\DeleteSensorDevice()) !== false) {
    print_r($delete-&gt;getResult());
} else {
    print_r($delete-&gt;getLastError());
}
/**
 * Sample call for DeleteImageSensor operation/method
 */
if ($delete-&gt;DeleteImageSensor(new \CustomerManagement\StructType\DeleteImageSensor()) !== false) {
    print_r($delete-&gt;getResult());
} else {
    print_r($delete-&gt;getLastError());
}
/**
 * Sample call for DeleteVideoDevice operation/method
 */
if ($delete-&gt;DeleteVideoDevice(new \CustomerManagement\StructType\DeleteVideoDevice()) !== false) {
    print_r($delete-&gt;getResult());
} else {
    print_r($delete-&gt;getLastError());
}
/**
 * Sample call for DeletePendingZwaveDeviceSpecificKey operation/method
 */
if ($delete-&gt;DeletePendingZwaveDeviceSpecificKey(new \CustomerManagement\StructType\DeletePendingZwaveDeviceSpecificKey()) !== false) {
    print_r($delete-&gt;getResult());
} else {
    print_r($delete-&gt;getLastError());
}
/**
 * Sample call for DeleteCustomerLogin operation/method
 */
if ($delete-&gt;DeleteCustomerLogin(new \CustomerManagement\StructType\DeleteCustomerLogin()) !== false) {
    print_r($delete-&gt;getResult());
} else {
    print_r($delete-&gt;getLastError());
}
/**
 * Samples for Reset ServiceType
 */
$reset = new \CustomerManagement\ServiceType\Reset($options);
$reset-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for ResetCustomerPassword operation/method
 */
if ($reset-&gt;ResetCustomerPassword(new \CustomerManagement\StructType\ResetCustomerPassword()) !== false) {
    print_r($reset-&gt;getResult());
} else {
    print_r($reset-&gt;getLastError());
}
/**
 * Sample call for ResetUnexpectedActivity operation/method
 */
if ($reset-&gt;ResetUnexpectedActivity(new \CustomerManagement\StructType\ResetUnexpectedActivity()) !== false) {
    print_r($reset-&gt;getResult());
} else {
    print_r($reset-&gt;getLastError());
}
/**
 * Samples for Update ServiceType
 */
$update = new \CustomerManagement\ServiceType\Update($options);
$update-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for UpdateCustomDevices operation/method
 */
if ($update-&gt;UpdateCustomDevices(new \CustomerManagement\StructType\UpdateCustomDevices()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateCustomerEnergyProgramEnrollment operation/method
 */
if ($update-&gt;UpdateCustomerEnergyProgramEnrollment(new \CustomerManagement\StructType\UpdateCustomerEnergyProgramEnrollment()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateUnitDescription operation/method
 */
if ($update-&gt;UpdateUnitDescription(new \CustomerManagement\StructType\UpdateUnitDescription()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateDeviceName operation/method
 */
if ($update-&gt;UpdateDeviceName(new \CustomerManagement\StructType\UpdateDeviceName()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateSensorDevice operation/method
 */
if ($update-&gt;UpdateSensorDevice(new \CustomerManagement\StructType\UpdateSensorDevice()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateSensorTypeIDQolsys operation/method
 */
if ($update-&gt;UpdateSensorTypeIDQolsys(new \CustomerManagement\StructType\UpdateSensorTypeIDQolsys()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateSensorGroup operation/method
 */
if ($update-&gt;UpdateSensorGroup(new \CustomerManagement\StructType\UpdateSensorGroup()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for Update2GigSensorGroup operation/method
 */
if ($update-&gt;Update2GigSensorGroup(new \CustomerManagement\StructType\Update2GigSensorGroup()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateNxSensorType operation/method
 */
if ($update-&gt;UpdateNxSensorType(new \CustomerManagement\StructType\UpdateNxSensorType()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateSensorVoiceDescriptors2Gig operation/method
 */
if ($update-&gt;UpdateSensorVoiceDescriptors2Gig(new \CustomerManagement\StructType\UpdateSensorVoiceDescriptors2Gig()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdatePanelCommunicationSetting operation/method
 */
if ($update-&gt;UpdatePanelCommunicationSetting(new \CustomerManagement\StructType\UpdatePanelCommunicationSetting()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateLoginEmailPreferences operation/method
 */
if ($update-&gt;UpdateLoginEmailPreferences(new \CustomerManagement\StructType\UpdateLoginEmailPreferences()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateEnterpriseRoles operation/method
 */
if ($update-&gt;UpdateEnterpriseRoles(new \CustomerManagement\StructType\UpdateEnterpriseRoles()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateRoles operation/method
 */
if ($update-&gt;UpdateRoles(new \CustomerManagement\StructType\UpdateRoles()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateCustomerAddress operation/method
 */
if ($update-&gt;UpdateCustomerAddress(new \CustomerManagement\StructType\UpdateCustomerAddress()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateCustomerPassword operation/method
 */
if ($update-&gt;UpdateCustomerPassword(new \CustomerManagement\StructType\UpdateCustomerPassword()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateCustomerLogin operation/method
 */
if ($update-&gt;UpdateCustomerLogin(new \CustomerManagement\StructType\UpdateCustomerLogin()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateCustomerLoginInfo operation/method
 */
if ($update-&gt;UpdateCustomerLoginInfo(new \CustomerManagement\StructType\UpdateCustomerLoginInfo()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateCustomerName operation/method
 */
if ($update-&gt;UpdateCustomerName(new \CustomerManagement\StructType\UpdateCustomerName()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateCustomerReadyDate operation/method
 */
if ($update-&gt;UpdateCustomerReadyDate(new \CustomerManagement\StructType\UpdateCustomerReadyDate()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateAuthenticationProviderLoginName operation/method
 */
if ($update-&gt;UpdateAuthenticationProviderLoginName(new \CustomerManagement\StructType\UpdateAuthenticationProviderLoginName()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateLoginPasswordWithoutPassword operation/method
 */
if ($update-&gt;UpdateLoginPasswordWithoutPassword(new \CustomerManagement\StructType\UpdateLoginPasswordWithoutPassword()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateCustomerBranch operation/method
 */
if ($update-&gt;UpdateCustomerBranch(new \CustomerManagement\StructType\UpdateCustomerBranch()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateDealerCustomerId operation/method
 */
if ($update-&gt;UpdateDealerCustomerId(new \CustomerManagement\StructType\UpdateDealerCustomerId()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateInstallerSalesRep operation/method
 */
if ($update-&gt;UpdateInstallerSalesRep(new \CustomerManagement\StructType\UpdateInstallerSalesRep()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateEnrolledInMaintenance operation/method
 */
if ($update-&gt;UpdateEnrolledInMaintenance(new \CustomerManagement\StructType\UpdateEnrolledInMaintenance()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateContractInformation operation/method
 */
if ($update-&gt;UpdateContractInformation(new \CustomerManagement\StructType\UpdateContractInformation()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateDealerCustomerSource operation/method
 */
if ($update-&gt;UpdateDealerCustomerSource(new \CustomerManagement\StructType\UpdateDealerCustomerSource()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateCentralStationInfo operation/method
 */
if ($update-&gt;UpdateCentralStationInfo(new \CustomerManagement\StructType\UpdateCentralStationInfo()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateCentralStationInfo_V2 operation/method
 */
if ($update-&gt;UpdateCentralStationInfo_V2(new \CustomerManagement\StructType\UpdateCentralStationInfo_V2()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdatePrimaryEmail operation/method
 */
if ($update-&gt;UpdatePrimaryEmail(new \CustomerManagement\StructType\UpdatePrimaryEmail()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdatePrimaryPhone operation/method
 */
if ($update-&gt;UpdatePrimaryPhone(new \CustomerManagement\StructType\UpdatePrimaryPhone()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateCameraSettings operation/method
 */
if ($update-&gt;UpdateCameraSettings(new \CustomerManagement\StructType\UpdateCameraSettings()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateNotifications operation/method
 */
if ($update-&gt;UpdateNotifications(new \CustomerManagement\StructType\UpdateNotifications()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateCustomerSecurityQuestion operation/method
 */
if ($update-&gt;UpdateCustomerSecurityQuestion(new \CustomerManagement\StructType\UpdateCustomerSecurityQuestion()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Samples for Hard ServiceType
 */
$hard = new \CustomerManagement\ServiceType\Hard($options);
$hard-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for HardResetModule operation/method
 */
if ($hard-&gt;HardResetModule(new \CustomerManagement\StructType\HardResetModule()) !== false) {
    print_r($hard-&gt;getResult());
} else {
    print_r($hard-&gt;getLastError());
}
/**
 * Sample call for HardResetModuleQolsys operation/method
 */
if ($hard-&gt;HardResetModuleQolsys(new \CustomerManagement\StructType\HardResetModuleQolsys()) !== false) {
    print_r($hard-&gt;getResult());
} else {
    print_r($hard-&gt;getLastError());
}
/**
 * Samples for Test ServiceType
 */
$test = new \CustomerManagement\ServiceType\Test($options);
$test-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for TestVideoDeviceConnectivity operation/method
 */
if ($test-&gt;TestVideoDeviceConnectivity(new \CustomerManagement\StructType\TestVideoDeviceConnectivity()) !== false) {
    print_r($test-&gt;getResult());
} else {
    print_r($test-&gt;getLastError());
}
/**
 * Samples for Set ServiceType
 */
$set = new \CustomerManagement\ServiceType\Set($options);
$set-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for SetImageSensorSettings operation/method
 */
if ($set-&gt;SetImageSensorSettings(new \CustomerManagement\StructType\SetImageSensorSettings()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Sample call for SetAutoPhoneTestSettings operation/method
 */
if ($set-&gt;SetAutoPhoneTestSettings(new \CustomerManagement\StructType\SetAutoPhoneTestSettings()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Sample call for SetWifi operation/method
 */
if ($set-&gt;SetWifi(new \CustomerManagement\StructType\SetWifi()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Sample call for SetVoiceAccessLevels operation/method
 */
if ($set-&gt;SetVoiceAccessLevels(new \CustomerManagement\StructType\SetVoiceAccessLevels()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Sample call for SetAddOnQuantity operation/method
 */
if ($set-&gt;SetAddOnQuantity(new \CustomerManagement\StructType\SetAddOnQuantity()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Sample call for SetImageSensorPartition operation/method
 */
if ($set-&gt;SetImageSensorPartition(new \CustomerManagement\StructType\SetImageSensorPartition()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Sample call for SetPauseNotificationsForCustomer operation/method
 */
if ($set-&gt;SetPauseNotificationsForCustomer(new \CustomerManagement\StructType\SetPauseNotificationsForCustomer()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Samples for Backup ServiceType
 */
$backup = new \CustomerManagement\ServiceType\Backup($options);
$backup-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for BackupPanelSettings operation/method
 */
if ($backup-&gt;BackupPanelSettings(new \CustomerManagement\StructType\BackupPanelSettings()) !== false) {
    print_r($backup-&gt;getResult());
} else {
    print_r($backup-&gt;getLastError());
}
/**
 * Samples for Check ServiceType
 */
$check = new \CustomerManagement\ServiceType\Check($options);
$check-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for CheckPanelSettingsBackup operation/method
 */
if ($check-&gt;CheckPanelSettingsBackup(new \CustomerManagement\StructType\CheckPanelSettingsBackup()) !== false) {
    print_r($check-&gt;getResult());
} else {
    print_r($check-&gt;getLastError());
}
/**
 * Sample call for CheckAvailableLoginName operation/method
 */
if ($check-&gt;CheckAvailableLoginName(new \CustomerManagement\StructType\CheckAvailableLoginName()) !== false) {
    print_r($check-&gt;getResult());
} else {
    print_r($check-&gt;getLastError());
}
/**
 * Samples for Restore ServiceType
 */
$restore = new \CustomerManagement\ServiceType\Restore($options);
$restore-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for RestoreBackedUpPanelSettings operation/method
 */
if ($restore-&gt;RestoreBackedUpPanelSettings(new \CustomerManagement\StructType\RestoreBackedUpPanelSettings()) !== false) {
    print_r($restore-&gt;getResult());
} else {
    print_r($restore-&gt;getLastError());
}
/**
 * Samples for Edit ServiceType
 */
$edit = new \CustomerManagement\ServiceType\Edit($options);
$edit-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for EditMasterCode operation/method
 */
if ($edit-&gt;EditMasterCode(new \CustomerManagement\StructType\EditMasterCode()) !== false) {
    print_r($edit-&gt;getResult());
} else {
    print_r($edit-&gt;getLastError());
}
/**
 * Sample call for EditUserCode operation/method
 */
if ($edit-&gt;EditUserCode(new \CustomerManagement\StructType\EditUserCode()) !== false) {
    print_r($edit-&gt;getResult());
} else {
    print_r($edit-&gt;getLastError());
}
/**
 * Sample call for EditScheduledAppointment operation/method
 */
if ($edit-&gt;EditScheduledAppointment(new \CustomerManagement\StructType\EditScheduledAppointment()) !== false) {
    print_r($edit-&gt;getResult());
} else {
    print_r($edit-&gt;getLastError());
}
/**
 * Samples for Request ServiceType
 */
$request = new \CustomerManagement\ServiceType\Request($options);
$request-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for RequestUpdatedEquipmentList operation/method
 */
if ($request-&gt;RequestUpdatedEquipmentList(new \CustomerManagement\StructType\RequestUpdatedEquipmentList()) !== false) {
    print_r($request-&gt;getResult());
} else {
    print_r($request-&gt;getLastError());
}
/**
 * Sample call for RequestAvailableWifiNetworkNames operation/method
 */
if ($request-&gt;RequestAvailableWifiNetworkNames(new \CustomerManagement\StructType\RequestAvailableWifiNetworkNames()) !== false) {
    print_r($request-&gt;getResult());
} else {
    print_r($request-&gt;getLastError());
}
/**
 * Sample call for RequestRoundTripCsTest operation/method
 */
if ($request-&gt;RequestRoundTripCsTest(new \CustomerManagement\StructType\RequestRoundTripCsTest()) !== false) {
    print_r($request-&gt;getResult());
} else {
    print_r($request-&gt;getLastError());
}
/**
 * Sample call for RequestSignalStrength operation/method
 */
if ($request-&gt;RequestSignalStrength(new \CustomerManagement\StructType\RequestSignalStrength()) !== false) {
    print_r($request-&gt;getResult());
} else {
    print_r($request-&gt;getLastError());
}
/**
 * Sample call for RequestFirmwareVersionCommand operation/method
 */
if ($request-&gt;RequestFirmwareVersionCommand(new \CustomerManagement\StructType\RequestFirmwareVersionCommand()) !== false) {
    print_r($request-&gt;getResult());
} else {
    print_r($request-&gt;getLastError());
}
/**
 * Sample call for RequestSensorNames operation/method
 */
if ($request-&gt;RequestSensorNames(new \CustomerManagement\StructType\RequestSensorNames()) !== false) {
    print_r($request-&gt;getResult());
} else {
    print_r($request-&gt;getLastError());
}
/**
 * Sample call for RequestUploadOfPanelSettings operation/method
 */
if ($request-&gt;RequestUploadOfPanelSettings(new \CustomerManagement\StructType\RequestUploadOfPanelSettings()) !== false) {
    print_r($request-&gt;getResult());
} else {
    print_r($request-&gt;getLastError());
}
/**
 * Sample call for RequestZWaveEquipmentList operation/method
 */
if ($request-&gt;RequestZWaveEquipmentList(new \CustomerManagement\StructType\RequestZWaveEquipmentList()) !== false) {
    print_r($request-&gt;getResult());
} else {
    print_r($request-&gt;getLastError());
}
/**
 * Sample call for RequestFirmwareUpgradeQolsys operation/method
 */
if ($request-&gt;RequestFirmwareUpgradeQolsys(new \CustomerManagement\StructType\RequestFirmwareUpgradeQolsys()) !== false) {
    print_r($request-&gt;getResult());
} else {
    print_r($request-&gt;getLastError());
}
/**
 * Sample call for RequestFirmwareUpgrade operation/method
 */
if ($request-&gt;RequestFirmwareUpgrade(new \CustomerManagement\StructType\RequestFirmwareUpgrade()) !== false) {
    print_r($request-&gt;getResult());
} else {
    print_r($request-&gt;getLastError());
}
/**
 * Samples for Activate ServiceType
 */
$activate = new \CustomerManagement\ServiceType\Activate($options);
$activate-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for ActivateInstantaneousMode operation/method
 */
if ($activate-&gt;ActivateInstantaneousMode(new \CustomerManagement\StructType\ActivateInstantaneousMode()) !== false) {
    print_r($activate-&gt;getResult());
} else {
    print_r($activate-&gt;getLastError());
}
/**
 * Sample call for ActivateModem operation/method
 */
if ($activate-&gt;ActivateModem(new \CustomerManagement\StructType\ActivateModem()) !== false) {
    print_r($activate-&gt;getResult());
} else {
    print_r($activate-&gt;getLastError());
}
/**
 * Sample call for ActivateCommitment operation/method
 */
if ($activate-&gt;ActivateCommitment(new \CustomerManagement\StructType\ActivateCommitment()) !== false) {
    print_r($activate-&gt;getResult());
} else {
    print_r($activate-&gt;getLastError());
}
/**
 * Samples for End ServiceType
 */
$end = new \CustomerManagement\ServiceType\End($options);
$end-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for EndInstantaneousMode operation/method
 */
if ($end-&gt;EndInstantaneousMode(new \CustomerManagement\StructType\EndInstantaneousMode()) !== false) {
    print_r($end-&gt;getResult());
} else {
    print_r($end-&gt;getLastError());
}
/**
 * Samples for Enable ServiceType
 */
$enable = new \CustomerManagement\ServiceType\Enable($options);
$enable-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for EnableInteractiveLockout operation/method
 */
if ($enable-&gt;EnableInteractiveLockout(new \CustomerManagement\StructType\EnableInteractiveLockout()) !== false) {
    print_r($enable-&gt;getResult());
} else {
    print_r($enable-&gt;getLastError());
}
/**
 * Samples for Disable ServiceType
 */
$disable = new \CustomerManagement\ServiceType\Disable($options);
$disable-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for DisableInteractiveLockout operation/method
 */
if ($disable-&gt;DisableInteractiveLockout(new \CustomerManagement\StructType\DisableInteractiveLockout()) !== false) {
    print_r($disable-&gt;getResult());
} else {
    print_r($disable-&gt;getLastError());
}
/**
 * Samples for Save ServiceType
 */
$save = new \CustomerManagement\ServiceType\Save($options);
$save-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for SaveUtilityInfo operation/method
 */
if ($save-&gt;SaveUtilityInfo(new \CustomerManagement\StructType\SaveUtilityInfo()) !== false) {
    print_r($save-&gt;getResult());
} else {
    print_r($save-&gt;getLastError());
}
/**
 * Samples for Is ServiceType
 */
$is = new \CustomerManagement\ServiceType\Is($options);
$is-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for IsModemActivated operation/method
 */
if ($is-&gt;IsModemActivated(new \CustomerManagement\StructType\IsModemActivated()) !== false) {
    print_r($is-&gt;getResult());
} else {
    print_r($is-&gt;getLastError());
}
/**
 * Samples for Terminate ServiceType
 */
$terminate = new \CustomerManagement\ServiceType\Terminate($options);
$terminate-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for TerminateModem operation/method
 */
if ($terminate-&gt;TerminateModem(new \CustomerManagement\StructType\TerminateModem()) !== false) {
    print_r($terminate-&gt;getResult());
} else {
    print_r($terminate-&gt;getLastError());
}
/**
 * Sample call for TerminateModem_v2 operation/method
 */
if ($terminate-&gt;TerminateModem_v2(new \CustomerManagement\StructType\TerminateModem_v2()) !== false) {
    print_r($terminate-&gt;getResult());
} else {
    print_r($terminate-&gt;getLastError());
}
/**
 * Sample call for TerminateCustomer operation/method
 */
if ($terminate-&gt;TerminateCustomer(new \CustomerManagement\StructType\TerminateCustomer()) !== false) {
    print_r($terminate-&gt;getResult());
} else {
    print_r($terminate-&gt;getLastError());
}
/**
 * Samples for Apply ServiceType
 */
$apply = new \CustomerManagement\ServiceType\Apply($options);
$apply-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for ApplyPanelTemplate operation/method
 */
if ($apply-&gt;ApplyPanelTemplate(new \CustomerManagement\StructType\ApplyPanelTemplate()) !== false) {
    print_r($apply-&gt;getResult());
} else {
    print_r($apply-&gt;getLastError());
}
/**
 * Samples for Recycle ServiceType
 */
$recycle = new \CustomerManagement\ServiceType\Recycle($options);
$recycle-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for RecycleAccount operation/method
 */
if ($recycle-&gt;RecycleAccount(new \CustomerManagement\StructType\RecycleAccount()) !== false) {
    print_r($recycle-&gt;getResult());
} else {
    print_r($recycle-&gt;getLastError());
}
/**
 * Samples for Email ServiceType
 */
$email = new \CustomerManagement\ServiceType\Email($options);
$email-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for EmailWelcomeLetter operation/method
 */
if ($email-&gt;EmailWelcomeLetter(new \CustomerManagement\StructType\EmailWelcomeLetter()) !== false) {
    print_r($email-&gt;getResult());
} else {
    print_r($email-&gt;getLastError());
}
/**
 * Samples for Swap ServiceType
 */
$swap = new \CustomerManagement\ServiceType\Swap($options);
$swap-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for SwapModem operation/method
 */
if ($swap-&gt;SwapModem(new \CustomerManagement\StructType\SwapModem()) !== false) {
    print_r($swap-&gt;getResult());
} else {
    print_r($swap-&gt;getLastError());
}
/**
 * Samples for Emulate ServiceType
 */
$emulate = new \CustomerManagement\ServiceType\Emulate($options);
$emulate-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for EmulateTransferAccounts operation/method
 */
if ($emulate-&gt;EmulateTransferAccounts(new \CustomerManagement\StructType\EmulateTransferAccounts()) !== false) {
    print_r($emulate-&gt;getResult());
} else {
    print_r($emulate-&gt;getLastError());
}
/**
 * Samples for Transfer ServiceType
 */
$transfer = new \CustomerManagement\ServiceType\Transfer($options);
$transfer-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for TransferAccounts operation/method
 */
if ($transfer-&gt;TransferAccounts(new \CustomerManagement\StructType\TransferAccounts()) !== false) {
    print_r($transfer-&gt;getResult());
} else {
    print_r($transfer-&gt;getLastError());
}
/**
 * Samples for Lookup ServiceType
 */
$lookup = new \CustomerManagement\ServiceType\Lookup($options);
$lookup-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for LookupCustomerId operation/method
 */
if ($lookup-&gt;LookupCustomerId(new \CustomerManagement\StructType\LookupCustomerId()) !== false) {
    print_r($lookup-&gt;getResult());
} else {
    print_r($lookup-&gt;getLastError());
}
/**
 * Sample call for LookupCustomerIdForDealer operation/method
 */
if ($lookup-&gt;LookupCustomerIdForDealer(new \CustomerManagement\StructType\LookupCustomerIdForDealer()) !== false) {
    print_r($lookup-&gt;getResult());
} else {
    print_r($lookup-&gt;getLastError());
}
/**
 * Sample call for LookupCustomerIdFromDealerCustomerId operation/method
 */
if ($lookup-&gt;LookupCustomerIdFromDealerCustomerId(new \CustomerManagement\StructType\LookupCustomerIdFromDealerCustomerId()) !== false) {
    print_r($lookup-&gt;getResult());
} else {
    print_r($lookup-&gt;getLastError());
}
/**
 * Sample call for LookupCustomerIdFromModemSerial operation/method
 */
if ($lookup-&gt;LookupCustomerIdFromModemSerial(new \CustomerManagement\StructType\LookupCustomerIdFromModemSerial()) !== false) {
    print_r($lookup-&gt;getResult());
} else {
    print_r($lookup-&gt;getLastError());
}
/**
 * Samples for Run ServiceType
 */
$run = new \CustomerManagement\ServiceType\Run($options);
$run-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for RunSystemCheck operation/method
 */
if ($run-&gt;RunSystemCheck(new \CustomerManagement\StructType\RunSystemCheck()) !== false) {
    print_r($run-&gt;getResult());
} else {
    print_r($run-&gt;getLastError());
}
/**
 * Samples for Generate ServiceType
 */
$generate = new \CustomerManagement\ServiceType\Generate($options);
$generate-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for GenerateCustomerLoginToken operation/method
 */
if ($generate-&gt;GenerateCustomerLoginToken(new \CustomerManagement\StructType\GenerateCustomerLoginToken()) !== false) {
    print_r($generate-&gt;getResult());
} else {
    print_r($generate-&gt;getLastError());
}
/**
 * Sample call for GenerateLoginToken operation/method
 */
if ($generate-&gt;GenerateLoginToken(new \CustomerManagement\StructType\GenerateLoginToken()) !== false) {
    print_r($generate-&gt;getResult());
} else {
    print_r($generate-&gt;getLastError());
}
/**
 * Sample call for GenerateLoginToken_v2 operation/method
 */
if ($generate-&gt;GenerateLoginToken_v2(new \CustomerManagement\StructType\GenerateLoginToken_v2()) !== false) {
    print_r($generate-&gt;getResult());
} else {
    print_r($generate-&gt;getLastError());
}
/**
 * Samples for Validate ServiceType
 */
$validate = new \CustomerManagement\ServiceType\Validate($options);
$validate-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for ValidateLoginPassword operation/method
 */
if ($validate-&gt;ValidateLoginPassword(new \CustomerManagement\StructType\ValidateLoginPassword()) !== false) {
    print_r($validate-&gt;getResult());
} else {
    print_r($validate-&gt;getLastError());
}
/**
 * Sample call for ValidateLoginPassword_v2 operation/method
 */
if ($validate-&gt;ValidateLoginPassword_v2(new \CustomerManagement\StructType\ValidateLoginPassword_v2()) !== false) {
    print_r($validate-&gt;getResult());
} else {
    print_r($validate-&gt;getLastError());
}
/**
 * Samples for Invalidate ServiceType
 */
$invalidate = new \CustomerManagement\ServiceType\Invalidate($options);
$invalidate-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for InvalidateLoginTokens_v2 operation/method
 */
if ($invalidate-&gt;InvalidateLoginTokens_v2(new \CustomerManagement\StructType\InvalidateLoginTokens_v2()) !== false) {
    print_r($invalidate-&gt;getResult());
} else {
    print_r($invalidate-&gt;getLastError());
}
/**
 * Sample call for InvalidateLoginTokens operation/method
 */
if ($invalidate-&gt;InvalidateLoginTokens(new \CustomerManagement\StructType\InvalidateLoginTokens()) !== false) {
    print_r($invalidate-&gt;getResult());
} else {
    print_r($invalidate-&gt;getLastError());
}
/**
 * Samples for Service ServiceType
 */
$service = new \CustomerManagement\ServiceType\Service($options);
$service-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for ServicePlanAudit operation/method
 */
if ($service-&gt;ServicePlanAudit(new \CustomerManagement\StructType\ServicePlanAudit()) !== false) {
    print_r($service-&gt;getResult());
} else {
    print_r($service-&gt;getLastError());
}
/**
 * Samples for Downgrade ServiceType
 */
$downgrade = new \CustomerManagement\ServiceType\Downgrade($options);
$downgrade-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for DowngradeSecurityToSAVAccount operation/method
 */
if ($downgrade-&gt;DowngradeSecurityToSAVAccount(new \CustomerManagement\StructType\DowngradeSecurityToSAVAccount()) !== false) {
    print_r($downgrade-&gt;getResult());
} else {
    print_r($downgrade-&gt;getLastError());
}
/**
 * Samples for Upgrade ServiceType
 */
$upgrade = new \CustomerManagement\ServiceType\Upgrade($options);
$upgrade-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for UpgradeSAVToSecurityAccount operation/method
 */
if ($upgrade-&gt;UpgradeSAVToSecurityAccount(new \CustomerManagement\StructType\UpgradeSAVToSecurityAccount()) !== false) {
    print_r($upgrade-&gt;getResult());
} else {
    print_r($upgrade-&gt;getLastError());
}
/**
 * Samples for Change ServiceType
 */
$change = new \CustomerManagement\ServiceType\Change($options);
$change-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for ChangeServicePlan operation/method
 */
if ($change-&gt;ChangeServicePlan(new \CustomerManagement\StructType\ChangeServicePlan()) !== false) {
    print_r($change-&gt;getResult());
} else {
    print_r($change-&gt;getLastError());
}
/**
 * Sample call for ChangeServicePlanValidationOnly operation/method
 */
if ($change-&gt;ChangeServicePlanValidationOnly(new \CustomerManagement\StructType\ChangeServicePlanValidationOnly()) !== false) {
    print_r($change-&gt;getResult());
} else {
    print_r($change-&gt;getLastError());
}
/**
 * Sample call for ChangeServicePlanTemplate operation/method
 */
if ($change-&gt;ChangeServicePlanTemplate(new \CustomerManagement\StructType\ChangeServicePlanTemplate()) !== false) {
    print_r($change-&gt;getResult());
} else {
    print_r($change-&gt;getLastError());
}
/**
 * Samples for Confirm ServiceType
 */
$confirm = new \CustomerManagement\ServiceType\Confirm($options);
$confirm-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for ConfirmPrimaryEmail operation/method
 */
if ($confirm-&gt;ConfirmPrimaryEmail(new \CustomerManagement\StructType\ConfirmPrimaryEmail()) !== false) {
    print_r($confirm-&gt;getResult());
} else {
    print_r($confirm-&gt;getLastError());
}
/**
 * Samples for Send ServiceType
 */
$send = new \CustomerManagement\ServiceType\Send($options);
$send-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for SendEnterpriseNotice operation/method
 */
if ($send-&gt;SendEnterpriseNotice(new \CustomerManagement\StructType\SendEnterpriseNotice()) !== false) {
    print_r($send-&gt;getResult());
} else {
    print_r($send-&gt;getLastError());
}
/**
 * Samples for Download ServiceType
 */
$download = new \CustomerManagement\ServiceType\Download($options);
$download-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for DownloadToPanel operation/method
 */
if ($download-&gt;DownloadToPanel(new \CustomerManagement\StructType\DownloadToPanel()) !== false) {
    print_r($download-&gt;getResult());
} else {
    print_r($download-&gt;getLastError());
}
/**
 * Samples for Turn ServiceType
 */
$turn = new \CustomerManagement\ServiceType\Turn($options);
$turn-&gt;setSoapHeaderAuthentication(new \CustomerManagement\StructType\Authentication());
/**
 * Sample call for TurnOffAccessCodeLock operation/method
 */
if ($turn-&gt;TurnOffAccessCodeLock(new \CustomerManagement\StructType\TurnOffAccessCodeLock()) !== false) {
    print_r($turn-&gt;getResult());
} else {
    print_r($turn-&gt;getLastError());
}
</pre></body></html>