<?php

namespace mriCommunitySupport;

/**
 * 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(
            'GetSelectBoxes' => '\\mriCommunitySupport\\StructType\\GetSelectBoxes',
            'GetSelectBoxesResponse' => '\\mriCommunitySupport\\StructType\\GetSelectBoxesResponse',
            'GetCities' => '\\mriCommunitySupport\\StructType\\GetCities',
            'GetCitiesResponse' => '\\mriCommunitySupport\\StructType\\GetCitiesResponse',
            'GetDetails' => '\\mriCommunitySupport\\StructType\\GetDetails',
            'GetDetailsResponse' => '\\mriCommunitySupport\\StructType\\GetDetailsResponse',
            'GetGlobalSearch' => '\\mriCommunitySupport\\StructType\\GetGlobalSearch',
            'GetGlobalSearchResponse' => '\\mriCommunitySupport\\StructType\\GetGlobalSearchResponse',
            'mediresource' => '\\mriCommunitySupport\\StructType\\Mediresource',
            'mriChannel' => '\\mriCommunitySupport\\StructType\\MriChannel',
            'mriChannelItem' => '\\mriCommunitySupport\\StructType\\MriChannelItem',
            'mriChannelItem2' => '\\mriCommunitySupport\\StructType\\MriChannelItem2',
        );
    }
}
