<?php

namespace App\Integration\Providers\Alliance3\DTO;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for getDictionaryAttributeValueByCodeResponse DTO
 * Meta information extracted from the WSDL
 * - type: tns:getDictionaryAttributeValueByCodeResponse
 * @subpackage Structs
 */
class GetDictionaryAttributeValueByCodeResponse extends AbstractStructBase
{
    /**
     * The DictionaryAttributeValueByCode
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var \App\Integration\Providers\Alliance3\DTO\DictionaryAttributeValue
     */
    public $DictionaryAttributeValueByCode;
    /**
     * Constructor method for getDictionaryAttributeValueByCodeResponse
     * @uses GetDictionaryAttributeValueByCodeResponse::setDictionaryAttributeValueByCode()
     * @param \App\Integration\Providers\Alliance3\DTO\DictionaryAttributeValue $dictionaryAttributeValueByCode
     */
    public function __construct(\App\Integration\Providers\Alliance3\DTO\DictionaryAttributeValue $dictionaryAttributeValueByCode = null)
    {
        $this
            ->setDictionaryAttributeValueByCode($dictionaryAttributeValueByCode);
    }
    /**
     * Get DictionaryAttributeValueByCode value
     * @return \App\Integration\Providers\Alliance3\DTO\DictionaryAttributeValue|null
     */
    public function getDictionaryAttributeValueByCode()
    {
        return $this->DictionaryAttributeValueByCode;
    }
    /**
     * Set DictionaryAttributeValueByCode value
     * @param \App\Integration\Providers\Alliance3\DTO\DictionaryAttributeValue $dictionaryAttributeValueByCode
     * @return \App\Integration\Providers\Alliance3\DTO\GetDictionaryAttributeValueByCodeResponse
     */
    public function setDictionaryAttributeValueByCode(\App\Integration\Providers\Alliance3\DTO\DictionaryAttributeValue $dictionaryAttributeValueByCode = null)
    {
        $this->DictionaryAttributeValueByCode = $dictionaryAttributeValueByCode;
        return $this;
    }
}
