<?php

namespace GreenwayDirectService;

/**
 * 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(
            'amendOffhire' => '\\GreenwayDirectService\\StructType\\AmendOffhire',
            'amendOffhireResponse' => '\\GreenwayDirectService\\StructType\\AmendOffhireResponse',
            'cancelReservation' => '\\GreenwayDirectService\\StructType\\CancelReservation',
            'cancelReservationResponse' => '\\GreenwayDirectService\\StructType\\CancelReservationResponse',
            'amendReservation' => '\\GreenwayDirectService\\StructType\\AmendReservation',
            'amendReservationResponse' => '\\GreenwayDirectService\\StructType\\AmendReservationResponse',
            'newReservation' => '\\GreenwayDirectService\\StructType\\NewReservation',
            'newReservationResponse' => '\\GreenwayDirectService\\StructType\\NewReservationResponse',
            'getQuote' => '\\GreenwayDirectService\\StructType\\GetQuote',
            'checkoutRA' => '\\GreenwayDirectService\\StructType\\CheckoutRA',
            'checkoutRAResponse' => '\\GreenwayDirectService\\StructType\\CheckoutRAResponse',
            'checkinRA' => '\\GreenwayDirectService\\StructType\\CheckinRA',
            'checkinRAResponse' => '\\GreenwayDirectService\\StructType\\CheckinRAResponse',
            'amendRA' => '\\GreenwayDirectService\\StructType\\AmendRA',
            'amendRAResponse' => '\\GreenwayDirectService\\StructType\\AmendRAResponse',
            'cancelRA' => '\\GreenwayDirectService\\StructType\\CancelRA',
            'cancelRAResponse' => '\\GreenwayDirectService\\StructType\\CancelRAResponse',
        );
    }
}
