<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
/**
 * This file aims to show you how to use this generated package.
 * In addition, the goal is to show which methods are available and the first needed parameter(s)
 * You have to use an associative array such as:
 * - the key must be a constant beginning with WSDL_ from AbstractSoapClientBase class (each generated ServiceType class extends this class)
 * - the value must be the corresponding key value (each option matches a {@link http://www.php.net/manual/en/soapclient.soapclient.php} option)
 * $options = array(
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_URL =&gt; 'https://rdxappint.radixxuat.com/RDX/Radixx.ConnectPoint/ConnectPoint.Fulfillment.svc?singleWSDL',
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_TRACE =&gt; true,
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_LOGIN =&gt; 'you_secret_login',
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_PASSWORD =&gt; 'you_secret_password',
 * );
 * etc...
 */
require_once __DIR__ . '/vendor/autoload.php';
/**
 * Minimal options
 */
$options = array(
    \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_URL =&gt; 'https://rdxappint.radixxuat.com/RDX/Radixx.ConnectPoint/ConnectPoint.Fulfillment.svc?singleWSDL',
    \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_CLASSMAP =&gt; ClassMap::get(),
);
/**
 * Samples for Process ServiceType
 */
$process = new \ServiceType\Process($options);
/**
 * Sample call for ProcessPNRPayment operation/method
 */
if ($process-&gt;ProcessPNRPayment(new \StructType\ProcessPNRPayment()) !== false) {
    print_r($process-&gt;getResult());
} else {
    print_r($process-&gt;getLastError());
}
/**
 * Sample call for ProcessItemPayment operation/method
 */
if ($process-&gt;ProcessItemPayment(new \StructType\ProcessItemPayment()) !== false) {
    print_r($process-&gt;getResult());
} else {
    print_r($process-&gt;getLastError());
}
/**
 * Samples for Insert ServiceType
 */
$insert = new \ServiceType\Insert($options);
/**
 * Sample call for InsertExternalProcessedPayment operation/method
 */
if ($insert-&gt;InsertExternalProcessedPayment(new \StructType\InsertExternalProcessedPayment()) !== false) {
    print_r($insert-&gt;getResult());
} else {
    print_r($insert-&gt;getLastError());
}
/**
 * Samples for Format ServiceType
 */
$format = new \ServiceType\Format($options);
/**
 * Sample call for Format3DSecureInformation operation/method
 */
if ($format-&gt;Format3DSecureInformation(new \StructType\Format3DSecureInformation()) !== false) {
    print_r($format-&gt;getResult());
} else {
    print_r($format-&gt;getLastError());
}
/**
 * Samples for Update ServiceType
 */
$update = new \ServiceType\Update($options);
/**
 * Sample call for UpdateExternalProcessedPayment operation/method
 */
if ($update-&gt;UpdateExternalProcessedPayment(new \StructType\UpdateExternalProcessedPayment()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateTicketingTimeLimit operation/method
 */
if ($update-&gt;UpdateTicketingTimeLimit(new \StructType\UpdateTicketingTimeLimit()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Sample call for UpdateExternalProcessedPaymentDetails operation/method
 */
if ($update-&gt;UpdateExternalProcessedPaymentDetails(new \StructType\UpdateExternalProcessedPaymentDetails()) !== false) {
    print_r($update-&gt;getResult());
} else {
    print_r($update-&gt;getLastError());
}
/**
 * Samples for Convert ServiceType
 */
$convert = new \ServiceType\Convert($options);
/**
 * Sample call for ConvertCurrencies operation/method
 */
if ($convert-&gt;ConvertCurrencies(new \StructType\ConvertCurrencies()) !== false) {
    print_r($convert-&gt;getResult());
} else {
    print_r($convert-&gt;getLastError());
}
/**
 * Samples for Add ServiceType
 */
$add = new \ServiceType\Add($options);
/**
 * Sample call for AddVoucherToReservation operation/method
 */
if ($add-&gt;AddVoucherToReservation(new \StructType\AddVoucherToReservation()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddPointsToReservation operation/method
 */
if ($add-&gt;AddPointsToReservation(new \StructType\AddPointsToReservation()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Samples for Remove ServiceType
 */
$remove = new \ServiceType\Remove($options);
/**
 * Sample call for RemoveVoucherFromReservationInSession operation/method
 */
if ($remove-&gt;RemoveVoucherFromReservationInSession(new \StructType\RemoveVoucherFromReservationInSession()) !== false) {
    print_r($remove-&gt;getResult());
} else {
    print_r($remove-&gt;getLastError());
}
/**
 * Samples for Get ServiceType
 */
$get = new \ServiceType\Get($options);
/**
 * Sample call for GetConvertedReservationBalance operation/method
 */
if ($get-&gt;GetConvertedReservationBalance(new \StructType\GetConvertedReservationBalance()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
</pre></body></html>