<?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 => 'https://www.bizcourier.eu/pegasus_cloud_app/service_01/shipmentCreation_v2.2.php?wsdl',
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_TRACE => true,
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_LOGIN => 'you_secret_login',
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_PASSWORD => 'you_secret_password',
 * );
 * etc...
 */
require_once __DIR__ . '/vendor/autoload.php';
/**
 * Minimal options
 */
$options = array(
    \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_URL => 'https://www.bizcourier.eu/pegasus_cloud_app/service_01/shipmentCreation_v2.2.php?wsdl',
    \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_CLASSMAP => ClassMap::get(),
);
/**
 * Samples for New ServiceType
 */
$new = new \ServiceType\_New($options);
/**
 * Sample call for newShipment operation/method
 */
if ($new->newShipment($Code, $CRM, $User, $Pass, $R_Name, $R_Address, $R_Area_Code, $R_Area, $R_PC, $R_Phone1, $R_Phone2, $R_Email, $Length, $Width, $Height, $Weight, $Prod, $Pieces, $Multi_Prod, $Cash_On_Delivery, $Cheques_On_Delivery, $Comments, $Charge, $Type, $Relative1, $Relative2, $Delivery_Time_To, $SMS, $Special_Treatment, $Protocol, $Morning_Delivery, $Buy_Amount, $Pick_Up, $Service_Type, $Relabel, $Con_Call, $Ins_Amount) !== false) {
    print_r($new->getResult());
} else {
    print_r($new->getLastError());
}
