<?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(
            'ProductDetail' => '\\StructType\\ProductDetail',
            'UserID' => '\\StructType\\UserID',
            'NamedParameterList' => '\\StructType\\NamedParameterList',
            'NamedParameter' => '\\StructType\\NamedParameter',
            'syncSubscriptionData' => '\\StructType\\SyncSubscriptionData',
            'syncSubscriptionDataResponse' => '\\StructType\\SyncSubscriptionDataResponse',
            'changeMSISDN' => '\\StructType\\ChangeMSISDN',
            'changeMSISDNResponse' => '\\StructType\\ChangeMSISDNResponse',
            'syncOrderRelation' => '\\StructType\\SyncOrderRelation',
            'syncOrderRelationResponse' => '\\StructType\\SyncOrderRelationResponse',
            'syncMSISDNChange' => '\\StructType\\SyncMSISDNChange',
            'syncMSISDNChangeResponse' => '\\StructType\\SyncMSISDNChangeResponse',
            'syncSubscriptionActive' => '\\StructType\\SyncSubscriptionActive',
            'syncSubscriptionActiveResponse' => '\\StructType\\SyncSubscriptionActiveResponse',
        );
    }
}
