<?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(
            'MbrPrevMedicalScheme' => '\\StructType\\MbrPrevMedicalScheme',
            'ArrayOfMbrPrevMedicalScheme' => '\\ArrayType\\ArrayOfMbrPrevMedicalScheme',
            'PreviousMedicalScheme' => '\\StructType\\PreviousMedicalScheme',
            'ArrayOfPreviousMedicalScheme' => '\\ArrayType\\ArrayOfPreviousMedicalScheme',
            'Dependant' => '\\StructType\\Dependant',
            'ArrayOfDependant' => '\\ArrayType\\ArrayOfDependant',
            'LateJoinerPenalty' => '\\StructType\\LateJoinerPenalty',
            'ArrayOfLateJoinerPenalty' => '\\ArrayType\\ArrayOfLateJoinerPenalty',
            'WaitingPeriod' => '\\StructType\\WaitingPeriod',
            'ArrayOfWaitingPeriod' => '\\ArrayType\\ArrayOfWaitingPeriod',
            'MedicalQuestionaire' => '\\StructType\\MedicalQuestionaire',
            'ArrayOfMedicalQuestionaire' => '\\ArrayType\\ArrayOfMedicalQuestionaire',
            'MedicalHistoryQuestionaire' => '\\StructType\\MedicalHistoryQuestionaire',
            'ArrayOfMedicalHistoryQuestionaire' => '\\ArrayType\\ArrayOfMedicalHistoryQuestionaire',
            'HealthCareProvider' => '\\StructType\\HealthCareProvider',
            'ArrayOfHealthCareProvider' => '\\ArrayType\\ArrayOfHealthCareProvider',
            'Disability' => '\\StructType\\Disability',
            'ArrayOfDisability' => '\\ArrayType\\ArrayOfDisability',
            'CorporateMemberEAppInput' => '\\StructType\\CorporateMemberEAppInput',
            'CorporateMemberEAppResponse' => '\\StructType\\CorporateMemberEAppResponse',
            'SysError' => '\\StructType\\SysError',
        );
    }
}
