<?php

namespace Sabre\DeletePriceQuote\Structs;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for HostCommand Structs
 * Meta informations extracted from the WSDL
 * - documentation: Same as STL Text.Long - A field text characters and no other constraints.
 * - maxLength: 4096
 * - minLength: 0
 * @subpackage Structs
 */
class HostCommand extends AbstractStructBase
{
    /**
     * The _
     * Meta informations extracted from the WSDL
     * - documentation: Same as STL Text.Long - A field text characters and no other constraints.
     * - maxLength: 4096
     * - minLength: 0
     * @var string
     */
    public $_;
    /**
     * The LNIATA
     * Meta informations extracted from the WSDL
     * - use: optional
     * @var string
     */
    public $LNIATA;
    /**
     * Constructor method for HostCommand
     * @uses HostCommand::set_()
     * @uses HostCommand::setLNIATA()
     * @param string $_
     * @param string $lNIATA
     */
    public function __construct($_ = null, $lNIATA = null)
    {
        $this
            ->set_($_)
            ->setLNIATA($lNIATA);
    }
    /**
     * Get _ value
     * @return string|null
     */
    public function get_()
    {
        return $this->_;
    }
    /**
     * Set _ value
     * @param string $_
     * @return \Sabre\DeletePriceQuote\Structs\HostCommand
     */
    public function set_($_ = null)
    {
        $this->_ = $_;
        return $this;
    }
    /**
     * Get LNIATA value
     * @return string|null
     */
    public function getLNIATA()
    {
        return $this->LNIATA;
    }
    /**
     * Set LNIATA value
     * @param string $lNIATA
     * @return \Sabre\DeletePriceQuote\Structs\HostCommand
     */
    public function setLNIATA($lNIATA = null)
    {
        $this->LNIATA = $lNIATA;
        return $this;
    }
    /**
     * Method called when an object has been exported with var_export() functions
     * It allows to return an object instantiated with the values
     * @see AbstractStructBase::__set_state()
     * @uses AbstractStructBase::__set_state()
     * @param array $array the exported values
     * @return \Sabre\DeletePriceQuote\Structs\HostCommand
     */
    public static function __set_state(array $array)
    {
        return parent::__set_state($array);
    }
    /**
     * Method returning the class name
     * @return string __CLASS__
     */
    public function __toString()
    {
        return __CLASS__;
    }
}
