<?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(
            'GetParcelShopByIdRequestType' => '\\StructType\\GetParcelShopByIdRequestType',
            'GLSUserCredentials' => '\\StructType\\GLSUserCredentials',
            'GLSExitCode' => '\\StructType\\GLSExitCode',
            'GetParcelShopByIdResponseType' => '\\StructType\\GetParcelShopByIdResponseType',
            'GLSParcelShop' => '\\StructType\\GLSParcelShop',
            'GLSAddress' => '\\StructType\\GLSAddress',
            'GLSPhonenumber' => '\\StructType\\GLSPhonenumber',
            'GetParcelShopByCountryCodeRequestType' => '\\StructType\\GetParcelShopByCountryCodeRequestType',
            'GetParcelShopByCountryCodeResponseType' => '\\StructType\\GetParcelShopByCountryCodeResponseType',
            'GLSCoordinates' => '\\StructType\\GLSCoordinates',
            'Hours' => '\\StructType\\Hours',
            'GLSWorkingDay' => '\\StructType\\GLSWorkingDay',
            'OpeningHours' => '\\StructType\\OpeningHours',
            'Breaks' => '\\StructType\\Breaks',
            'GetParcelShopInAreaResponse' => '\\StructType\\GetParcelShopInAreaResponse',
            'GetParcelShopInAreaRequestType' => '\\StructType\\GetParcelShopInAreaRequestType',
            'GetParcelShopRequestType' => '\\StructType\\GetParcelShopRequestType',
            'GetParcelShopReponseType' => '\\StructType\\GetParcelShopReponseType',
            'SearchResults' => '\\StructType\\SearchResults',
        );
    }
}
