<?php

namespace App\Integration\Providers\Alliance3\DTO;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for getDictionaryAttributeValueByCode DTO
 * Meta information extracted from the WSDL
 * - type: tns:getDictionaryAttributeValueByCode
 * @subpackage Structs
 */
class GetDictionaryAttributeValueByCode extends AbstractStructBase
{
    /**
     * The accID
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $accID;
    /**
     * The DictionaryCode
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $DictionaryCode;
    /**
     * The CodeValue
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $CodeValue;
    /**
     * The AttributeCode
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $AttributeCode;
    /**
     * Constructor method for getDictionaryAttributeValueByCode
     * @uses GetDictionaryAttributeValueByCode::setAccID()
     * @uses GetDictionaryAttributeValueByCode::setDictionaryCode()
     * @uses GetDictionaryAttributeValueByCode::setCodeValue()
     * @uses GetDictionaryAttributeValueByCode::setAttributeCode()
     * @param string $accID
     * @param string $dictionaryCode
     * @param string $codeValue
     * @param string $attributeCode
     */
    public function __construct($accID = null, $dictionaryCode = null, $codeValue = null, $attributeCode = null)
    {
        $this
            ->setAccID($accID)
            ->setDictionaryCode($dictionaryCode)
            ->setCodeValue($codeValue)
            ->setAttributeCode($attributeCode);
    }
    /**
     * Get accID value
     * @return string|null
     */
    public function getAccID()
    {
        return $this->accID;
    }
    /**
     * Set accID value
     * @param string $accID
     * @return \App\Integration\Providers\Alliance3\DTO\GetDictionaryAttributeValueByCode
     */
    public function setAccID($accID = null)
    {
        $this->accID = $accID;
        return $this;
    }
    /**
     * Get DictionaryCode value
     * @return string|null
     */
    public function getDictionaryCode()
    {
        return $this->DictionaryCode;
    }
    /**
     * Set DictionaryCode value
     * @param string $dictionaryCode
     * @return \App\Integration\Providers\Alliance3\DTO\GetDictionaryAttributeValueByCode
     */
    public function setDictionaryCode($dictionaryCode = null)
    {
        $this->DictionaryCode = $dictionaryCode;
        return $this;
    }
    /**
     * Get CodeValue value
     * @return string|null
     */
    public function getCodeValue()
    {
        return $this->CodeValue;
    }
    /**
     * Set CodeValue value
     * @param string $codeValue
     * @return \App\Integration\Providers\Alliance3\DTO\GetDictionaryAttributeValueByCode
     */
    public function setCodeValue($codeValue = null)
    {
        $this->CodeValue = $codeValue;
        return $this;
    }
    /**
     * Get AttributeCode value
     * @return string|null
     */
    public function getAttributeCode()
    {
        return $this->AttributeCode;
    }
    /**
     * Set AttributeCode value
     * @param string $attributeCode
     * @return \App\Integration\Providers\Alliance3\DTO\GetDictionaryAttributeValueByCode
     */
    public function setAttributeCode($attributeCode = null)
    {
        $this->AttributeCode = $attributeCode;
        return $this;
    }
}
