<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php

namespace Api\Aramex\Shipping;

/**
 * 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(
            'ShipmentCreationRequest' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\ShipmentCreationRequest',
            'ClientInfo' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\ClientInfo',
            'Transaction' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\Transaction',
            'ArrayOfShipment' =&gt; '\\Api\\Aramex\\Shipping\\ArrayType\\ArrayOfShipment',
            'Shipment' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\Shipment',
            'Party' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\Party',
            'Address' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\Address',
            'Contact' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\Contact',
            'ShipmentDetails' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\ShipmentDetails',
            'Dimensions' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\Dimensions',
            'Weight' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\Weight',
            'Money' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\Money',
            'ArrayOfShipmentItem' =&gt; '\\Api\\Aramex\\Shipping\\ArrayType\\ArrayOfShipmentItem',
            'ShipmentItem' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\ShipmentItem',
            'ArrayOfAttachment' =&gt; '\\Api\\Aramex\\Shipping\\ArrayType\\ArrayOfAttachment',
            'Attachment' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\Attachment',
            'LabelInfo' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\LabelInfo',
            'ShipmentCreationResponse' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\ShipmentCreationResponse',
            'ArrayOfNotification' =&gt; '\\Api\\Aramex\\Shipping\\ArrayType\\ArrayOfNotification',
            'Notification' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\Notification',
            'ArrayOfProcessedShipment' =&gt; '\\Api\\Aramex\\Shipping\\ArrayType\\ArrayOfProcessedShipment',
            'ProcessedShipment' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\ProcessedShipment',
            'ShipmentLabel' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\ShipmentLabel',
            'LabelPrintingRequest' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\LabelPrintingRequest',
            'LabelPrintingResponse' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\LabelPrintingResponse',
            'PickupCreationRequest' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\PickupCreationRequest',
            'Pickup' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\Pickup',
            'ArrayOfPickupItemDetail' =&gt; '\\Api\\Aramex\\Shipping\\ArrayType\\ArrayOfPickupItemDetail',
            'PickupItemDetail' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\PickupItemDetail',
            'Volume' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\Volume',
            'PickupCreationResponse' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\PickupCreationResponse',
            'ProcessedPickup' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\ProcessedPickup',
            'PickupCancelationRequest' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\PickupCancelationRequest',
            'PickupCancelationResponse' =&gt; '\\Api\\Aramex\\Shipping\\StructType\\PickupCancelationResponse',
        );
    }
}
</pre></body></html>