<?php

namespace LendingQB;

/**
 * Class which returns the class map definition
 * @package LendingQB
 */
class LendingQBClassMap
{
    /**
     * 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(
            'GetUserAuthTicket' => '\\LendingQB\\StructType\\LendingQBGetUserAuthTicket',
            'GetUserAuthTicketResponse' => '\\LendingQB\\StructType\\LendingQBGetUserAuthTicketResponse',
            'GetUserAuthTicketAndChangePassword' => '\\LendingQB\\StructType\\LendingQBGetUserAuthTicketAndChangePassword',
            'GetUserAuthTicketAndChangePasswordResponse' => '\\LendingQB\\StructType\\LendingQBGetUserAuthTicketAndChangePasswordResponse',
            'GetActiveDirectoryUserAuthTicket' => '\\LendingQB\\StructType\\LendingQBGetActiveDirectoryUserAuthTicket',
            'GetActiveDirectoryUserAuthTicketResponse' => '\\LendingQB\\StructType\\LendingQBGetActiveDirectoryUserAuthTicketResponse',
            'GetPmlUserAuthTicket' => '\\LendingQB\\StructType\\LendingQBGetPmlUserAuthTicket',
            'GetPmlUserAuthTicketResponse' => '\\LendingQB\\StructType\\LendingQBGetPmlUserAuthTicketResponse',
            'GetMobilePmlUserAuthTicket' => '\\LendingQB\\StructType\\LendingQBGetMobilePmlUserAuthTicket',
            'GetMobilePmlUserAuthTicketResponse' => '\\LendingQB\\StructType\\LendingQBGetMobilePmlUserAuthTicketResponse',
            'GetBrokerPartnerAuthTicket' => '\\LendingQB\\StructType\\LendingQBGetBrokerPartnerAuthTicket',
            'GetBrokerPartnerAuthTicketResponse' => '\\LendingQB\\StructType\\LendingQBGetBrokerPartnerAuthTicketResponse',
            'GetMobileUserAuthTicket' => '\\LendingQB\\StructType\\LendingQBGetMobileUserAuthTicket',
            'GetMobileUserAuthTicketResponse' => '\\LendingQB\\StructType\\LendingQBGetMobileUserAuthTicketResponse',
            'GetMobileADUseAuthTicket' => '\\LendingQB\\StructType\\LendingQBGetMobileADUseAuthTicket',
            'GetMobileADUseAuthTicketResponse' => '\\LendingQB\\StructType\\LendingQBGetMobileADUseAuthTicketResponse',
        );
    }
}
