<?php

namespace App\Integration\Providers\Alliance3\DTO;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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