<?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(
            'AddNewInquiry' => '\\StructType\\AddNewInquiry',
            'AddNewInquiryResponse' => '\\StructType\\AddNewInquiryResponse',
            'AddNewInquiryWithCV' => '\\StructType\\AddNewInquiryWithCV',
            'AddNewInquiryWithCVResponse' => '\\StructType\\AddNewInquiryWithCVResponse',
            'GetReportURL' => '\\StructType\\GetReportURL',
            'GetReportURLResponse' => '\\StructType\\GetReportURLResponse',
            'CheckReportStatus' => '\\StructType\\CheckReportStatus',
            'CheckReportStatusResponse' => '\\StructType\\CheckReportStatusResponse',
            'GetReportType' => '\\StructType\\GetReportType',
            'GetReportTypeResponse' => '\\StructType\\GetReportTypeResponse',
            'GetMediaScoreNumber' => '\\StructType\\GetMediaScoreNumber',
            'GetMediaScoreNumberResponse' => '\\StructType\\GetMediaScoreNumberResponse',
            'GetMediaScorePercentage' => '\\StructType\\GetMediaScorePercentage',
            'GetMediaScorePercentageResponse' => '\\StructType\\GetMediaScorePercentageResponse',
            'GetMediaRiskLevel' => '\\StructType\\GetMediaRiskLevel',
            'GetMediaRiskLevelResponse' => '\\StructType\\GetMediaRiskLevelResponse',
            'GetReportUrgency' => '\\StructType\\GetReportUrgency',
            'GetReportUrgencyResponse' => '\\StructType\\GetReportUrgencyResponse',
        );
    }
}
