<?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(
            'ShowRequestType' => '\\StructType\\ShowRequestType',
            'ControlArea' => '\\StructType\\ControlArea',
            'DataArea' => '\\StructType\\DataArea',
            'WarehouseItemInventory' => '\\StructType\\WarehouseItemInventory',
            'Inventory' => '\\StructType\\Inventory',
            'ShowResponseType' => '\\StructType\\ShowResponseType',
            'ActivationType' => '\\StructType\\ActivationType',
            'InformationArea' => '\\StructType\\InformationArea',
            'Message' => '\\StructType\\Message',
            'MessageDetails' => '\\StructType\\MessageDetails',
            'MessageReference' => '\\StructType\\MessageReference',
            'DetailMessage' => '\\StructType\\DetailMessage',
            'InformationMessage' => '\\StructType\\InformationMessage',
            'FilterType' => '\\StructType\\FilterType',
            'LogicalExpressionType' => '\\StructType\\LogicalExpressionType',
            'ComparisonExpressionType' => '\\StructType\\ComparisonExpressionType',
            'EmptyValueType' => '\\StructType\\EmptyValueType',
            'SelectionType' => '\\StructType\\SelectionType',
        );
    }
}
