<?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(
            'GetScoreReportsInCDScoreLinkFormat' => '\\StructType\\GetScoreReportsInCDScoreLinkFormat',
            'GetScoreReportsInCDScoreLinkFormatResponse' => '\\StructType\\GetScoreReportsInCDScoreLinkFormatResponse',
            'GetHistoryReport' => '\\StructType\\GetHistoryReport',
            'GetHistoryReportResponse' => '\\StructType\\GetHistoryReportResponse',
            'GetHistoryReportGivenCandidate' => '\\StructType\\GetHistoryReportGivenCandidate',
            'GetHistoryReportGivenCandidateResponse' => '\\StructType\\GetHistoryReportGivenCandidateResponse',
            'GetNewScoreReports' => '\\StructType\\GetNewScoreReports',
            'GetNewScoreReportsResponse' => '\\StructType\\GetNewScoreReportsResponse',
            'GetReportingDates' => '\\StructType\\GetReportingDates',
            'GetReportingDatesResponse' => '\\StructType\\GetReportingDatesResponse',
            'GetScoreReportsGivenReportingDate' => '\\StructType\\GetScoreReportsGivenReportingDate',
            'GetScoreReportsGivenReportingDateResponse' => '\\StructType\\GetScoreReportsGivenReportingDateResponse',
        );
    }
}
