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