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

namespace hkpost;

/**
 * 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(
            'mailTrackingDetailwSE' =&gt; '\\hkpost\\StructType\\MailTrackingDetailwSE',
            'mailTrackingDetailwSEResponse' =&gt; '\\hkpost\\StructType\\MailTrackingDetailwSEResponse',
            'ArrayOf_tns1_TrackingDetail' =&gt; '\\hkpost\\ArrayType\\ArrayOf_tns1_TrackingDetail',
            'UserData' =&gt; '\\hkpost\\StructType\\UserData',
            'MailTrackMilestone' =&gt; '\\hkpost\\StructType\\MailTrackMilestone',
            'TrackingDetail' =&gt; '\\hkpost\\StructType\\TrackingDetail',
            'MailTrackingDetailwSEResult' =&gt; '\\hkpost\\StructType\\MailTrackingDetailwSEResult',
        );
    }
}
</pre></body></html>