<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
/**
 * Class which returns the class map definition
 * @package
 */
class ClassMap
{
    /**
     * Returns the mapping between the WSDL Structs and generated Structs' classes
     * This array is sent to the \SoapClient when calling the WS
     * @return string[]
     */
    final public static function get()
    {
        return array(
            'SubmitLead' =&gt; '\\StructType\\SubmitLead',
            'SubmitLeadResponse' =&gt; '\\StructType\\SubmitLeadResponse',
            'GetDealOptions' =&gt; '\\StructType\\GetDealOptions',
            'GetDealOptionsResponse' =&gt; '\\StructType\\GetDealOptionsResponse',
            'GetContractsCanUpgrade' =&gt; '\\StructType\\GetContractsCanUpgrade',
            'GetContractsCanUpgradeResponse' =&gt; '\\StructType\\GetContractsCanUpgradeResponse',
            'an_PLPLead' =&gt; '\\StructType\\An_PLPLead',
            'DealOption' =&gt; '\\StructType\\DealOption',
            'Colour' =&gt; '\\StructType\\Colour',
            'an_Make' =&gt; '\\StructType\\An_Make',
            'an_Model' =&gt; '\\StructType\\An_Model',
            'ArrayOfDealOption' =&gt; '\\ArrayType\\ArrayOfDealOption',
            'ArrayOfContractUpgrade' =&gt; '\\ArrayType\\ArrayOfContractUpgrade',
            'ContractUpgrade' =&gt; '\\StructType\\ContractUpgrade',
            'ArrayOfUnitType' =&gt; '\\ArrayType\\ArrayOfUnitType',
            'UnitType' =&gt; '\\StructType\\UnitType',
            'Vehicle' =&gt; '\\StructType\\Vehicle',
            'Driver' =&gt; '\\StructType\\Driver',
            'VehicleCategory' =&gt; '\\StructType\\VehicleCategory',
            'AssetType' =&gt; '\\StructType\\AssetType',
            'ArrayOfVehicleContractUpgrade' =&gt; '\\ArrayType\\ArrayOfVehicleContractUpgrade',
            'VehicleContractUpgrade' =&gt; '\\StructType\\VehicleContractUpgrade',
        );
    }
}
</pre></body></html>