<?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(
            'deleteCustomers' => '\\StructType\\DeleteCustomers',
            'wsEntry' => '\\StructType\\WsEntry',
            'credentials' => '\\StructType\\Credentials',
            'wsValuedEntry' => '\\StructType\\WsValuedEntry',
            'deleteCustomersResponse' => '\\StructType\\DeleteCustomersResponse',
            'operationResult' => '\\StructType\\OperationResult',
            'simpleOperationResult' => '\\StructType\\SimpleOperationResult',
            'getCustomers' => '\\StructType\\GetCustomers',
            'getCustomersResponse' => '\\StructType\\GetCustomersResponse',
            'customersRequestResult' => '\\StructType\\CustomersRequestResult',
            'entitiesRequestResult' => '\\StructType\\EntitiesRequestResult',
            'customer' => '\\StructType\\Customer',
            'contact' => '\\StructType\\Contact',
            'deleteAttachment' => '\\StructType\\DeleteAttachment',
            'attachment' => '\\StructType\\Attachment',
            'deleteAttachmentResponse' => '\\StructType\\DeleteAttachmentResponse',
            'createAttachment' => '\\StructType\\CreateAttachment',
            'createAttachmentResponse' => '\\StructType\\CreateAttachmentResponse',
            'createCustomers' => '\\StructType\\CreateCustomers',
            'createCustomersResponse' => '\\StructType\\CreateCustomersResponse',
            'entitiesCreationResult' => '\\StructType\\EntitiesCreationResult',
            'entityCreationResult' => '\\StructType\\EntityCreationResult',
            'entityOperationResult' => '\\StructType\\EntityOperationResult',
        );
    }
}
