<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for Get2FACodeResponse StructType
 * @subpackage Structs
 */
class Get2FACodeResponse extends AbstractStructBase
{
    /**
     * The Get2FACodeResult
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var EFaturaWebService_ResultType
     */
    public $Get2FACodeResult;
    /**
     * Constructor method for Get2FACodeResponse
     * @uses Get2FACodeResponse::setGet2FACodeResult()
     * @param EFaturaWebService_ResultType $get2FACodeResult
     */
    public function __construct(EFaturaWebService_ResultType $get2FACodeResult = null)
    {
        $this
            ->setGet2FACodeResult($get2FACodeResult);
    }
    /**
     * Get Get2FACodeResult value
     * An additional test has been added (isset) before returning the property value as
     * this property may have been unset before, due to the fact that this property is
     * removable from the request (nillable=true+minOccurs=0)
     * @return EFaturaWebService_ResultType|null
     */
    public function getGet2FACodeResult()
    {
        return isset($this->Get2FACodeResult) ? $this->Get2FACodeResult : null;
    }
    /**
     * Set Get2FACodeResult value
     * This property is removable from request (nillable=true+minOccurs=0), therefore
     * if the value assigned to this property is null, it is removed from this object
     * @param EFaturaWebService_ResultType $get2FACodeResult
     * @return Get2FACodeResponse
     */
    public function setGet2FACodeResult(EFaturaWebService_ResultType $get2FACodeResult = null)
    {
        if (is_null($get2FACodeResult) || (is_array($get2FACodeResult) && empty($get2FACodeResult))) {
            unset($this->Get2FACodeResult);
        } else {
            $this->Get2FACodeResult = $get2FACodeResult;
        }
        return $this;
    }
}
