<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(
            'PingRequest' =&gt; '\\StructType\\PingRequest',
            'PingResponse' =&gt; '\\StructType\\PingResponse',
            'AzdIAutoException' =&gt; '\\StructType\\AzdIAutoException',
            'CalculatePrices2Request' =&gt; '\\StructType\\CalculatePrices2Request',
            'AbstractCalculatePricesRequest' =&gt; '\\StructType\\AbstractCalculatePricesRequest',
            'PolicyData2' =&gt; '\\StructType\\PolicyData2',
            'AbstractPolicyData' =&gt; '\\StructType\\AbstractPolicyData',
            'InsurancePackage2' =&gt; '\\StructType\\InsurancePackage2',
            'AbstractInsurancePackage' =&gt; '\\StructType\\AbstractInsurancePackage',
            'Tariff' =&gt; '\\StructType\\Tariff',
            'InsurancePackage' =&gt; '\\StructType\\InsurancePackage',
            'PolicyData' =&gt; '\\StructType\\PolicyData',
            'VehicleData2' =&gt; '\\StructType\\VehicleData2',
            'VehicleData' =&gt; '\\StructType\\VehicleData',
            'PolicyHolder' =&gt; '\\StructType\\PolicyHolder',
            'CalculatePricesRequest' =&gt; '\\StructType\\CalculatePricesRequest',
            'CalculatePrices2Response' =&gt; '\\StructType\\CalculatePrices2Response',
            'AbstractCalculatePricesResponse' =&gt; '\\StructType\\AbstractCalculatePricesResponse',
            'InsurancePackagePrices2' =&gt; '\\StructType\\InsurancePackagePrices2',
            'AbstractInsurancePackagePrices' =&gt; '\\StructType\\AbstractInsurancePackagePrices',
            'PeriodPrice2' =&gt; '\\StructType\\PeriodPrice2',
            'AbstractPeriodPrice' =&gt; '\\StructType\\AbstractPeriodPrice',
            'TariffPrice' =&gt; '\\StructType\\TariffPrice',
            'OpusDiscount' =&gt; '\\StructType\\OpusDiscount',
            'TariffGroupDiscount' =&gt; '\\StructType\\TariffGroupDiscount',
            'PeriodPrice' =&gt; '\\StructType\\PeriodPrice',
            'InsurancePackagePrices' =&gt; '\\StructType\\InsurancePackagePrices',
            'CalculatePricesResponse' =&gt; '\\StructType\\CalculatePricesResponse',
            'checkAgainstBlacklistRequest' =&gt; '\\StructType\\CheckAgainstBlacklistRequest',
            'checkAgainstBlacklistResponse' =&gt; '\\StructType\\CheckAgainstBlacklistResponse',
        );
    }
}
</pre></body></html>