<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?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(
            'ArrayOfstring' =&gt; 'ArrayOfstring',
            'ArrayOfbase64Binary' =&gt; 'ArrayOfbase64Binary',
            'Agent' =&gt; 'Agent',
            'Holder' =&gt; 'Holder',
            'PolicyHolder' =&gt; 'PolicyHolder',
            'GetProductList' =&gt; 'GetProductList',
            'GetProductListResponse' =&gt; 'GetProductListResponse',
            'XmlDataResult' =&gt; 'XmlDataResult',
            'GetCodeLists' =&gt; 'GetCodeLists',
            'GetCodeListsResponse' =&gt; 'GetCodeListsResponse',
            'GetCodeListItems' =&gt; 'GetCodeListItems',
            'GetCodeListItemsResponse' =&gt; 'GetCodeListItemsResponse',
            'GetItemsDefinition' =&gt; 'GetItemsDefinition',
            'GetItemsDefinitionResponse' =&gt; 'GetItemsDefinitionResponse',
            'GetContractsInfo' =&gt; 'GetContractsInfo',
            'GetContractsInfoResponse' =&gt; 'GetContractsInfoResponse',
            'ArrayOfContractInfo' =&gt; 'ArrayOfContractInfo',
            'ContractInfo' =&gt; 'ContractInfo',
            'ArrayOfContractEvent' =&gt; 'ArrayOfContractEvent',
            'ContractEvent' =&gt; 'ContractEvent',
            'GetContractInfo' =&gt; 'GetContractInfo',
            'GetContractInfoResponse' =&gt; 'GetContractInfoResponse',
            'Credentials' =&gt; 'Credentials',
            'SimulationData' =&gt; 'SimulationData',
            'ArrayOfDataElement' =&gt; 'ArrayOfDataElement',
            'DataElement' =&gt; 'DataElement',
            'SimulationResult' =&gt; 'SimulationResult',
            'ResultData' =&gt; 'ResultData',
            'SimulationAndProposalData' =&gt; 'SimulationAndProposalData',
            'ContractResult' =&gt; 'ContractResult',
            'Documents' =&gt; 'Documents',
            'SimulationAndOfferData' =&gt; 'SimulationAndOfferData',
            'OfferResult' =&gt; 'OfferResult',
            'ContractChangedData' =&gt; 'ContractChangedData',
            'ContractChangeResult' =&gt; 'ContractChangeResult',
            'ContractData' =&gt; 'ContractData',
            'ArrayOfUploadDocument' =&gt; 'ArrayOfUploadDocument',
            'UploadDocument' =&gt; 'UploadDocument',
            'RegistrationResultData' =&gt; 'RegistrationResultData',
            'ResultDocuments' =&gt; 'ResultDocuments',
            'ContractsFilter' =&gt; 'ContractsFilter',
            'ContractsInfoResult' =&gt; 'ContractsInfoResult',
            'ContractInfoResult' =&gt; 'ContractInfoResult',
            'SignedContractData' =&gt; 'SignedContractData',
            'ArrayOfSignedDocument' =&gt; 'ArrayOfSignedDocument',
            'SignedDocument' =&gt; 'SignedDocument',
            'SignedContractUploadResult' =&gt; 'SignedContractUploadResult',
            'Simulate' =&gt; 'Simulate',
            'SimulateResponse' =&gt; 'SimulateResponse',
            'CreateContract' =&gt; 'CreateContract',
            'CreateContractResponse' =&gt; 'CreateContractResponse',
            'CreateOffer' =&gt; 'CreateOffer',
            'CreateOfferResponse' =&gt; 'CreateOfferResponse',
            'ChangeContract' =&gt; 'ChangeContract',
            'ChangeContractResponse' =&gt; 'ChangeContractResponse',
            'RegisterContract' =&gt; 'RegisterContract',
            'RegisterContractResponse' =&gt; 'RegisterContractResponse',
            'ConfirmContract' =&gt; 'ConfirmContract',
            'ConfirmContractResponse' =&gt; 'ConfirmContractResponse',
            'RevokeContract' =&gt; 'RevokeContract',
            'RevokeContractResponse' =&gt; 'RevokeContractResponse',
            'GetContractDocuments' =&gt; 'GetContractDocuments',
            'GetContractDocumentsResponse' =&gt; 'GetContractDocumentsResponse',
            'UploadSignedContract' =&gt; 'UploadSignedContract',
            'UploadSignedContractResponse' =&gt; 'UploadSignedContractResponse',
            'AuthenticationFault' =&gt; 'AuthenticationFault',
            'DuplicatedContractFault' =&gt; 'DuplicatedContractFault',
            'InvalidSignedContractFault' =&gt; 'InvalidSignedContractFault',
            'ExternalBioSignServiceFault' =&gt; 'ExternalBioSignServiceFault',
            'InvalidExternallySignedContractFault' =&gt; 'InvalidExternallySignedContractFault',
            'ApplicationException' =&gt; 'ApplicationException',
            'Exception' =&gt; 'Exception',
        );
    }
}
</pre></body></html>