<?php

namespace App\Integration\Providers\Alliance3\DTO;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for getDictionaryByCode DTO
 * Meta information extracted from the WSDL
 * - type: tns:getDictionaryByCode
 * @subpackage Structs
 */
class GetDictionaryByCode 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 ValueCode
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $ValueCode;
    /**
     * Constructor method for getDictionaryByCode
     * @uses GetDictionaryByCode::setAccID()
     * @uses GetDictionaryByCode::setDictionaryCode()
     * @uses GetDictionaryByCode::setValueCode()
     * @param string $accID
     * @param string $dictionaryCode
     * @param string $valueCode
     */
    public function __construct($accID = null, $dictionaryCode = null, $valueCode = null)
    {
        $this
            ->setAccID($accID)
            ->setDictionaryCode($dictionaryCode)
            ->setValueCode($valueCode);
    }
    /**
     * Get accID value
     * @return string|null
     */
    public function getAccID()
    {
        return $this->accID;
    }
    /**
     * Set accID value
     * @param string $accID
     * @return \App\Integration\Providers\Alliance3\DTO\GetDictionaryByCode
     */
    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\GetDictionaryByCode
     */
    public function setDictionaryCode($dictionaryCode = null)
    {
        $this->DictionaryCode = $dictionaryCode;
        return $this;
    }
    /**
     * Get ValueCode value
     * @return string|null
     */
    public function getValueCode()
    {
        return $this->ValueCode;
    }
    /**
     * Set ValueCode value
     * @param string $valueCode
     * @return \App\Integration\Providers\Alliance3\DTO\GetDictionaryByCode
     */
    public function setValueCode($valueCode = null)
    {
        $this->ValueCode = $valueCode;
        return $this;
    }
}
