Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/admin/GLS/CCODM/Ax/GLS_2StructCCODMax.php |
<?php
/**
* File for class GLS_2StructCCODMax
* @package GLS_2
* @subpackage Structs
* @author WsdlToPhp Team <contact@wsdltophp.com>
* @version 20150429-01
* @date 2017-02-02
*/
/**
* This class stands for GLS_2StructCCODMax originally named cCODMax
* Meta informations extracted from the WSDL
* - from schema : {@link https://ade-test.gls-poland.com/adeplus/pm1/ade_webapi2.php?wsdl}
* @package GLS_2
* @subpackage Structs
* @author WsdlToPhp Team <contact@wsdltophp.com>
* @version 20150429-01
* @date 2017-02-02
*/
class GLS_2StructCCODMax extends GLS_2WsdlClass
{
/**
* The max_cod
* Meta informations extracted from the WSDL
* - maxOccurs : 1
* - minOccurs : 1
* @var float
*/
public $max_cod;
/**
* Constructor method for cCODMax
* @see parent::__construct()
* @param float $_max_cod
* @return GLS_2StructCCODMax
*/
public function __construct($_max_cod)
{
parent::__construct(array('max_cod'=>$_max_cod),false);
}
/**
* Get max_cod value
* @return float
*/
public function getMax_cod()
{
return $this->max_cod;
}
/**
* Set max_cod value
* @param float $_max_cod the max_cod
* @return float
*/
public function setMax_cod($_max_cod)
{
return ($this->max_cod = $_max_cod);
}
/**
* Method called when an object has been exported with var_export() functions
* It allows to return an object instantiated with the values
* @see GLS_2WsdlClass::__set_state()
* @uses GLS_2WsdlClass::__set_state()
* @param array $_array the exported values
* @return GLS_2StructCCODMax
*/
public static function __set_state(array $_array,$_className = __CLASS__)
{
return parent::__set_state($_array,$_className);
}
/**
* Method returning the class name
* @return string __CLASS__
*/
public function __toString()
{
return __CLASS__;
}
}