<?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(
            'PayBill' => '\\StructType\\PayBill',
            'PayBillResponse' => '\\StructType\\PayBillResponse',
            'ValidateBillAccount' => '\\StructType\\ValidateBillAccount',
            'ValidateBillAccountResponse' => '\\StructType\\ValidateBillAccountResponse',
            'CheckBillStatus' => '\\StructType\\CheckBillStatus',
            'CheckBillStatusResponse' => '\\StructType\\CheckBillStatusResponse',
            'GetDSTVProduct' => '\\StructType\\GetDSTVProduct',
            'GetDSTVProductResponse' => '\\StructType\\GetDSTVProductResponse',
            'product' => '\\StructType\\Product',
            'CheckBalance' => '\\StructType\\CheckBalance',
            'CheckBalanceResponse' => '\\StructType\\CheckBalanceResponse',
            'TopUp' => '\\StructType\\TopUp',
            'TopUpResponse' => '\\StructType\\TopUpResponse',
            'GetDueAmountAndDate' => '\\StructType\\GetDueAmountAndDate',
            'GetDueAmountAndDateResponse' => '\\StructType\\GetDueAmountAndDateResponse',
            'GetTelcoList' => '\\StructType\\GetTelcoList',
            'GetTelcoListResponse' => '\\StructType\\GetTelcoListResponse',
            'AirTimeTopUp' => '\\StructType\\AirTimeTopUp',
            'AirTimeTopUpResponse' => '\\StructType\\AirTimeTopUpResponse',
            'DataTable' => '\\StructType\\DataTable',
            'PinProdList' => '\\StructType\\PinProdList',
            'ArrayOfPinProdClass' => '\\ArrayType\\ArrayOfPinProdClass',
            'PinProdClass' => '\\StructType\\PinProdClass',
        );
    }
}
