<?php

namespace App\Integration\Providers\Alliance3\DTO;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for getDictionariesResponse DTO
 * Meta information extracted from the WSDL
 * - type: tns:getDictionariesResponse
 * @subpackage Structs
 */
class GetDictionariesResponse extends AbstractStructBase
{
    /**
     * The ListDictionaryResponse
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var \App\Integration\Providers\Alliance3\DTO\DictionaryList
     */
    public $ListDictionaryResponse;
    /**
     * Constructor method for getDictionariesResponse
     * @uses GetDictionariesResponse::setListDictionaryResponse()
     * @param \App\Integration\Providers\Alliance3\DTO\DictionaryList $listDictionaryResponse
     */
    public function __construct(\App\Integration\Providers\Alliance3\DTO\DictionaryList $listDictionaryResponse = null)
    {
        $this
            ->setListDictionaryResponse($listDictionaryResponse);
    }
    /**
     * Get ListDictionaryResponse value
     * @return \App\Integration\Providers\Alliance3\DTO\DictionaryList|null
     */
    public function getListDictionaryResponse()
    {
        return $this->ListDictionaryResponse;
    }
    /**
     * Set ListDictionaryResponse value
     * @param \App\Integration\Providers\Alliance3\DTO\DictionaryList $listDictionaryResponse
     * @return \App\Integration\Providers\Alliance3\DTO\GetDictionariesResponse
     */
    public function setListDictionaryResponse(\App\Integration\Providers\Alliance3\DTO\DictionaryList $listDictionaryResponse = null)
    {
        $this->ListDictionaryResponse = $listDictionaryResponse;
        return $this;
    }
}
