<?php

namespace App\Integration\Providers\Alliance3\DTO;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for getDictionaryValueCodesByAttribute DTO
 * Meta information extracted from the WSDL
 * - type: tns:getDictionaryValueCodesByAttribute
 * @subpackage Structs
 */
class GetDictionaryValueCodesByAttribute 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 AttributeCode
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $AttributeCode;
    /**
     * The AttributeValue
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $AttributeValue;
    /**
     * Constructor method for getDictionaryValueCodesByAttribute
     * @uses GetDictionaryValueCodesByAttribute::setAccID()
     * @uses GetDictionaryValueCodesByAttribute::setDictionaryCode()
     * @uses GetDictionaryValueCodesByAttribute::setAttributeCode()
     * @uses GetDictionaryValueCodesByAttribute::setAttributeValue()
     * @param string $accID
     * @param string $dictionaryCode
     * @param string $attributeCode
     * @param string $attributeValue
     */
    public function __construct($accID = null, $dictionaryCode = null, $attributeCode = null, $attributeValue = null)
    {
        $this
            ->setAccID($accID)
            ->setDictionaryCode($dictionaryCode)
            ->setAttributeCode($attributeCode)
            ->setAttributeValue($attributeValue);
    }
    /**
     * Get accID value
     * @return string|null
     */
    public function getAccID()
    {
        return $this->accID;
    }
    /**
     * Set accID value
     * @param string $accID
     * @return \App\Integration\Providers\Alliance3\DTO\GetDictionaryValueCodesByAttribute
     */
    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\GetDictionaryValueCodesByAttribute
     */
    public function setDictionaryCode($dictionaryCode = null)
    {
        $this->DictionaryCode = $dictionaryCode;
        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\GetDictionaryValueCodesByAttribute
     */
    public function setAttributeCode($attributeCode = null)
    {
        $this->AttributeCode = $attributeCode;
        return $this;
    }
    /**
     * Get AttributeValue value
     * @return string|null
     */
    public function getAttributeValue()
    {
        return $this->AttributeValue;
    }
    /**
     * Set AttributeValue value
     * @param string $attributeValue
     * @return \App\Integration\Providers\Alliance3\DTO\GetDictionaryValueCodesByAttribute
     */
    public function setAttributeValue($attributeValue = null)
    {
        $this->AttributeValue = $attributeValue;
        return $this;
    }
}
