<?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(
            'WebSearchRequest' => '\\StructType\\WebSearchRequest',
            'WebSearchResponse' => '\\StructType\\WebSearchResponse',
            'categoryList' => '\\StructType\\CategoryList',
            'Name' => '\\StructType\\Name',
            'pagination' => '\\StructType\\Pagination',
            'advancedSearch' => '\\StructType\\AdvancedSearch',
            'themeClil' => '\\StructType\\ThemeClil',
            'Notices' => '\\StructType\\Notices',
            'paginationRs' => '\\StructType\\PaginationRs',
            'begin' => '\\StructType\\Begin',
            'transmission' => '\\StructType\\Transmission',
            'product' => '\\StructType\\Product',
            'subject' => '\\StructType\\Subject',
            'selection' => '\\StructType\\Selection',
            'contributor' => '\\StructType\\Contributor',
            'supportingResource' => '\\StructType\\SupportingResource',
            'relatedProduct' => '\\StructType\\RelatedProduct',
            'descriptiveDetail' => '\\StructType\\DescriptiveDetail',
            'supplyDetail' => '\\StructType\\SupplyDetail',
            'price' => '\\StructType\\Price',
            'futurePrice' => '\\StructType\\FuturePrice',
            'picture' => '\\StructType\\Picture',
            'contributorRole' => '\\StructType\\ContributorRole',
            'clilSubject' => '\\StructType\\ClilSubject',
            'clilSubject1' => '\\StructType\\ClilSubject1',
            'clilSubject2' => '\\StructType\\ClilSubject2',
            'clilSubject3' => '\\StructType\\ClilSubject3',
            'literaryPrize' => '\\StructType\\LiteraryPrize',
            'HUB' => '\\StructType\\HUB',
            'PNB' => '\\StructType\\PNB',
            'MAT' => '\\StructType\\MAT',
            'supplier' => '\\StructType\\Supplier',
            'simple' => '\\StructType\\Simple',
            'article' => '\\StructType\\Article',
            'simpleSubject' => '\\StructType\\SimpleSubject',
            'simpleContributor' => '\\StructType\\SimpleContributor',
            'productPresentation' => '\\StructType\\ProductPresentation',
            'commercialDescription' => '\\StructType\\CommercialDescription',
            'simplePicture' => '\\StructType\\SimplePicture',
        );
    }
}
