<?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(
            'ServiceContext' => '\\StructType\\ServiceContext',
            'ArrayOfErrorDetails' => '\\ArrayType\\ArrayOfErrorDetails',
            'ErrorDetails' => '\\StructType\\ErrorDetails',
            'ServiceFault' => '\\StructType\\ServiceFault',
            'GetPepmainscsrsave1Request' => '\\StructType\\GetPepmainscsrsave1Request',
            'Pepmainscsrsave1__hseg_In' => '\\StructType\\Pepmainscsrsave1__hseg_In',
            'ArrayOfPepmainscsrsave1_Itemdeml_In' => '\\ArrayType\\ArrayOfPepmainscsrsave1_Itemdeml_In',
            'Pepmainscsrsave1_Itemdeml_In' => '\\StructType\\Pepmainscsrsave1_Itemdeml_In',
            'GetPepmainscsrsave1Response' => '\\StructType\\GetPepmainscsrsave1Response',
            'ArrayOfPepmainscsrsave1_Itemdemlout_Out' => '\\ArrayType\\ArrayOfPepmainscsrsave1_Itemdemlout_Out',
            'Pepmainscsrsave1_Itemdemlout_Out' => '\\StructType\\Pepmainscsrsave1_Itemdemlout_Out',
            'Pepmainscsrsave1__hseg_Out' => '\\StructType\\Pepmainscsrsave1__hseg_Out',
            'GetPepmainscsrsave1' => '\\StructType\\GetPepmainscsrsave1',
        );
    }
}
