<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php

namespace Api\Aramex\Location;

/**
 * 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(
            'AddressValidationRequest' =&gt; '\\Api\\Aramex\\Location\\StructType\\AddressValidationRequest',
            'ClientInfo' =&gt; '\\Api\\Aramex\\Location\\StructType\\ClientInfo',
            'Transaction' =&gt; '\\Api\\Aramex\\Location\\StructType\\Transaction',
            'Address' =&gt; '\\Api\\Aramex\\Location\\StructType\\Address',
            'AddressValidationResponse' =&gt; '\\Api\\Aramex\\Location\\StructType\\AddressValidationResponse',
            'ArrayOfNotification' =&gt; '\\Api\\Aramex\\Location\\ArrayType\\ArrayOfNotification',
            'Notification' =&gt; '\\Api\\Aramex\\Location\\StructType\\Notification',
            'ArrayOfAddress' =&gt; '\\Api\\Aramex\\Location\\ArrayType\\ArrayOfAddress',
            'CountriesFetchingRequest' =&gt; '\\Api\\Aramex\\Location\\StructType\\CountriesFetchingRequest',
            'CountriesFetchingResponse' =&gt; '\\Api\\Aramex\\Location\\StructType\\CountriesFetchingResponse',
            'ArrayOfCountry' =&gt; '\\Api\\Aramex\\Location\\ArrayType\\ArrayOfCountry',
            'Country' =&gt; '\\Api\\Aramex\\Location\\StructType\\Country',
            'CountryFetchingRequest' =&gt; '\\Api\\Aramex\\Location\\StructType\\CountryFetchingRequest',
            'CountryFetchingResponse' =&gt; '\\Api\\Aramex\\Location\\StructType\\CountryFetchingResponse',
            'CitiesFetchingRequest' =&gt; '\\Api\\Aramex\\Location\\StructType\\CitiesFetchingRequest',
            'CitiesFetchingResponse' =&gt; '\\Api\\Aramex\\Location\\StructType\\CitiesFetchingResponse',
            'OfficesFetchingRequest' =&gt; '\\Api\\Aramex\\Location\\StructType\\OfficesFetchingRequest',
            'OfficesFetchingResponse' =&gt; '\\Api\\Aramex\\Location\\StructType\\OfficesFetchingResponse',
            'ArrayOfOffice' =&gt; '\\Api\\Aramex\\Location\\ArrayType\\ArrayOfOffice',
            'Office' =&gt; '\\Api\\Aramex\\Location\\StructType\\Office',
            'ArrayOfstring' =&gt; '\\Api\\Aramex\\Location\\ArrayType\\ArrayOfstring',
        );
    }
}
</pre></body></html>