Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/admin/GLS/CL/Ident/GLS_2StructCLabelsIdent.php
<?php
/**
 * File for class GLS_2StructCLabelsIdent
 * @package GLS_2
 * @subpackage Structs
 * @author WsdlToPhp Team <contact@wsdltophp.com>
 * @version 20150429-01
 * @date 2017-02-02
 */
/**
 * This class stands for GLS_2StructCLabelsIdent originally named cLabelsIdent
 * 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_2StructCLabelsIdent extends GLS_2WsdlClass
{
    /**
     * The labels
     * Meta informations extracted from the WSDL
     * - maxOccurs : 1
     * - minOccurs : 1
     * @var string
     */
    public $labels;
    /**
     * The ident
     * Meta informations extracted from the WSDL
     * - maxOccurs : 1
     * - minOccurs : 1
     * @var string
     */
    public $ident;
    /**
     * Constructor method for cLabelsIdent
     * @see parent::__construct()
     * @param string $_labels
     * @param string $_ident
     * @return GLS_2StructCLabelsIdent
     */
    public function __construct($_labels,$_ident)
    {
        parent::__construct(array('labels'=>$_labels,'ident'=>$_ident),false);
    }
    /**
     * Get labels value
     * @return string
     */
    public function getLabels()
    {
        return $this->labels;
    }
    /**
     * Set labels value
     * @param string $_labels the labels
     * @return string
     */
    public function setLabels($_labels)
    {
        return ($this->labels = $_labels);
    }
    /**
     * Get ident value
     * @return string
     */
    public function getIdent()
    {
        return $this->ident;
    }
    /**
     * Set ident value
     * @param string $_ident the ident
     * @return string
     */
    public function setIdent($_ident)
    {
        return ($this->ident = $_ident);
    }
    /**
     * 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_2StructCLabelsIdent
     */
    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__;
    }
}