<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(
            'track' =&gt; 'Track',
            'trackRequest' =&gt; 'TrackRequest',
            'credential' =&gt; 'Credential',
            'trackResponse' =&gt; 'TrackResponse',
            'trackResponseType' =&gt; 'TrackResponseType',
            'status' =&gt; 'Status',
            'trackConsignmentResponse' =&gt; 'TrackConsignmentResponse',
            'trackParcelResponse' =&gt; 'TrackParcelResponse',
            'trackParcelActivity' =&gt; 'TrackParcelActivity',
            'getCost' =&gt; 'GetCost',
            'costRequest' =&gt; 'CostRequest',
            'getCostResponse' =&gt; 'GetCostResponse',
            'costResponseType' =&gt; 'CostResponseType',
            'costResponse' =&gt; 'CostResponse',
            'costPosition' =&gt; 'CostPosition',
            'bills' =&gt; 'Bills',
            'billRequest' =&gt; 'BillRequest',
            'billsResponse' =&gt; 'BillsResponse',
            'billResponseType' =&gt; 'BillResponseType',
            'bill' =&gt; 'Bill',
            'billEntry' =&gt; 'BillEntry',
            'manifest' =&gt; 'Manifest',
            'manifestRequest' =&gt; 'ManifestRequest',
            'manifestResponse' =&gt; 'ManifestResponse',
            'manifestResponseType' =&gt; 'ManifestResponseType',
            'book' =&gt; 'Book',
            'bookRequest' =&gt; 'BookRequest',
            'consignment' =&gt; 'Consignment',
            'party' =&gt; 'Party',
            'information' =&gt; 'Information',
            'parcel' =&gt; 'Parcel',
            'bookResponse' =&gt; 'BookResponse',
            'bookResponseType' =&gt; 'BookResponseType',
            'consignmentResponse' =&gt; 'ConsignmentResponse',
            'parcelResponse' =&gt; 'ParcelResponse',
            'rates' =&gt; 'Rates',
            'rateRequest' =&gt; 'RateRequest',
            'ratesResponse' =&gt; 'RatesResponse',
            'rateResponseType' =&gt; 'RateResponseType',
            'rateConsignmentResponse' =&gt; 'RateConsignmentResponse',
            'rateInformation' =&gt; 'RateInformation',
            'getLabels' =&gt; 'GetLabels',
            'labelsRequest' =&gt; 'LabelsRequest',
            'getLabelsResponse' =&gt; 'GetLabelsResponse',
            'labelsResponseType' =&gt; 'LabelsResponseType',
            'labelsResponse' =&gt; 'LabelsResponse',
            'cancel' =&gt; 'Cancel',
            'cancelRequest' =&gt; 'CancelRequest',
            'cancelConsignment' =&gt; 'CancelConsignment',
            'cancelResponse' =&gt; 'CancelResponse',
            'cancelResponseType' =&gt; 'CancelResponseType',
            'printLabels' =&gt; 'PrintLabels',
            'printLabelsRequest' =&gt; 'PrintLabelsRequest',
            'printLabelsResponse' =&gt; 'PrintLabelsResponse',
            'printLabelsResponseType' =&gt; 'PrintLabelsResponseType',
        );
    }
}
</pre></body></html>