Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/admin/GLS/CL/Abel/GLS_2StructCLabel.php
<?php
/**
 * File for class GLS_2StructCLabel
 * @package GLS_2
 * @subpackage Structs
 * @author WsdlToPhp Team <contact@wsdltophp.com>
 * @version 20150429-01
 * @date 2017-02-02
 */
/**
 * This class stands for GLS_2StructCLabel originally named cLabel
 * 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_2StructCLabel extends GLS_2WsdlClass
{
    /**
     * The number
     * Meta informations extracted from the WSDL
     * - maxOccurs : 1
     * - minOccurs : 1
     * @var string
     */
    public $number;
    /**
     * The file
     * Meta informations extracted from the WSDL
     * - maxOccurs : 1
     * - minOccurs : 1
     * @var string
     */
    public $file;
    /**
     * Constructor method for cLabel
     * @see parent::__construct()
     * @param string $_number
     * @param string $_file
     * @return GLS_2StructCLabel
     */
    public function __construct($_number,$_file)
    {
        parent::__construct(array('number'=>$_number,'file'=>$_file),false);
    }
    /**
     * Get number value
     * @return string
     */
    public function getNumber()
    {
        return $this->number;
    }
    /**
     * Set number value
     * @param string $_number the number
     * @return string
     */
    public function setNumber($_number)
    {
        return ($this->number = $_number);
    }
    /**
     * Get file value
     * @return string
     */
    public function getFile()
    {
        return $this->file;
    }
    /**
     * Set file value
     * @param string $_file the file
     * @return string
     */
    public function setFile($_file)
    {
        return ($this->file = $_file);
    }
    /**
     * 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_2StructCLabel
     */
    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__;
    }
}