<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.Reservation.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.Reservation.svc?singleWSDL',
    \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_CLASSMAP =&gt; ClassMap::get(),
);
/**
 * Samples for Create ServiceType
 */
$create = new \ServiceType\Create($options);
/**
 * Sample call for CreatePNR operation/method
 */
if ($create-&gt;CreatePNR(new \StructType\CreatePNR()) !== false) {
    print_r($create-&gt;getResult());
} else {
    print_r($create-&gt;getLastError());
}
/**
 * Samples for Summary ServiceType
 */
$summary = new \ServiceType\Summary($options);
/**
 * Sample call for SummaryPNR operation/method
 */
if ($summary-&gt;SummaryPNR(new \StructType\SummaryPNR()) !== false) {
    print_r($summary-&gt;getResult());
} else {
    print_r($summary-&gt;getLastError());
}
/**
 * Samples for Modify ServiceType
 */
$modify = new \ServiceType\Modify($options);
/**
 * Sample call for ModifyPNR operation/method
 */
if ($modify-&gt;ModifyPNR(new \StructType\ModifyPNR()) !== false) {
    print_r($modify-&gt;getResult());
} else {
    print_r($modify-&gt;getLastError());
}
/**
 * Samples for Cancel ServiceType
 */
$cancel = new \ServiceType\Cancel($options);
/**
 * Sample call for CancelPNR operation/method
 */
if ($cancel-&gt;CancelPNR(new \StructType\CancelPNR()) !== false) {
    print_r($cancel-&gt;getResult());
} else {
    print_r($cancel-&gt;getLastError());
}
/**
 * Samples for Retrieve ServiceType
 */
$retrieve = new \ServiceType\Retrieve($options);
/**
 * Sample call for RetrievePNR operation/method
 */
if ($retrieve-&gt;RetrievePNR(new \StructType\RetrievePNR()) !== false) {
    print_r($retrieve-&gt;getResult());
} else {
    print_r($retrieve-&gt;getLastError());
}
/**
 * Sample call for RetrieveApisInfo operation/method
 */
if ($retrieve-&gt;RetrieveApisInfo(new \StructType\RetrieveApisInfo()) !== false) {
    print_r($retrieve-&gt;getResult());
} else {
    print_r($retrieve-&gt;getLastError());
}
/**
 * Sample call for RetrievePNRByRecordLocator operation/method
 */
if ($retrieve-&gt;RetrievePNRByRecordLocator(new \StructType\RetrievePNRByRecordLocator()) !== false) {
    print_r($retrieve-&gt;getResult());
} else {
    print_r($retrieve-&gt;getLastError());
}
/**
 * Samples for Import ServiceType
 */
$import = new \ServiceType\Import($options);
/**
 * Sample call for ImportPNR operation/method
 */
if ($import-&gt;ImportPNR(new \StructType\ImportPNR()) !== false) {
    print_r($import-&gt;getResult());
} else {
    print_r($import-&gt;getLastError());
}
/**
 * Samples for History ServiceType
 */
$history = new \ServiceType\History($options);
/**
 * Sample call for HistoryPNR operation/method
 */
if ($history-&gt;HistoryPNR(new \StructType\HistoryPNR()) !== false) {
    print_r($history-&gt;getResult());
} else {
    print_r($history-&gt;getLastError());
}
/**
 * Samples for Evaluate ServiceType
 */
$evaluate = new \ServiceType\Evaluate($options);
/**
 * Sample call for EvaluateModificationOfPNR operation/method
 */
if ($evaluate-&gt;EvaluateModificationOfPNR(new \StructType\EvaluateModificationOfPNR()) !== false) {
    print_r($evaluate-&gt;getResult());
} else {
    print_r($evaluate-&gt;getLastError());
}
/**
 * Samples for Add ServiceType
 */
$add = new \ServiceType\Add($options);
/**
 * Sample call for AddPenalties operation/method
 */
if ($add-&gt;AddPenalties(new \StructType\AddPenalties()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddTaxes operation/method
 */
if ($add-&gt;AddTaxes(new \StructType\AddTaxes()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddUpdateApisInfo operation/method
 */
if ($add-&gt;AddUpdateApisInfo(new \StructType\AddUpdateApisInfo()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Samples for Override ServiceType
 */
$override = new \ServiceType\Override($options);
/**
 * Sample call for OverrideReservationCharges operation/method
 */
if ($override-&gt;OverrideReservationCharges(new \StructType\OverrideReservationCharges()) !== false) {
    print_r($override-&gt;getResult());
} else {
    print_r($override-&gt;getLastError());
}
/**
 * Samples for Get ServiceType
 */
$get = new \ServiceType\Get($options);
/**
 * Sample call for GetReservationsByNationalId operation/method
 */
if ($get-&gt;GetReservationsByNationalId(new \StructType\GetReservationsByNationalId()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Samples for Process ServiceType
 */
$process = new \ServiceType\Process($options);
/**
 * Sample call for ProcessFlightDisruptionAlert operation/method
 */
if ($process-&gt;ProcessFlightDisruptionAlert(new \StructType\ProcessFlightDisruptionAlert()) !== false) {
    print_r($process-&gt;getResult());
} else {
    print_r($process-&gt;getLastError());
}
/**
 * Samples for OAF ServiceType
 */
$oAF = new \ServiceType\OAF($options);
/**
 * Sample call for OAFlightSegments operation/method
 */
if ($oAF-&gt;OAFlightSegments(new \StructType\OAFlightSegments()) !== false) {
    print_r($oAF-&gt;getResult());
} else {
    print_r($oAF-&gt;getLastError());
}
/**
 * Samples for Manual ServiceType
 */
$manual = new \ServiceType\Manual($options);
/**
 * Sample call for ManualRefundCharges operation/method
 */
if ($manual-&gt;ManualRefundCharges(new \StructType\ManualRefundCharges()) !== false) {
    print_r($manual-&gt;getResult());
} else {
    print_r($manual-&gt;getLastError());
}
</pre></body></html>