<?php
/**
* Class to handle requests to WeatherService webservice.
* This code was generated by using SoapProxy tool by hide@address.com
* Please do not modify it by hand.
*
*/
class WeatherService extends SoapProxy {
protected $defaultTypeMap = array(
"GetWeather" => "WeatherParam_GetWeather",
"GetWeatherResponse" => "WeatherParam_GetWeatherResponse"
);
/**
* Genarated webservice method GetWeather
*
* @param WeatherParam_GetWeather $parameters
* @return WeatherParam_GetWeatherResponse
*/
public function GetWeather(WeatherParam_GetWeather $parameters) {
return $this->soapClient->GetWeather($parameters);
}
} //end generated proxy class
/**********SOAP TYPES***********/
/**
* Generated data proxy class for struct GetWeather
*
*/
class WeatherParam_GetWeather {
/**
* @var string $City
*/
public $City;
}
/**
* Generated data proxy class for struct GetWeatherResponse
*
*/
class WeatherParam_GetWeatherResponse {
/**
* @var string $GetWeatherResult
*/
public $GetWeatherResult;
}