<?php

namespace App\Integration\Providers\Alliance3\DTO;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for RelatedPdlInfo DTO
 * @subpackage Structs
 */
class RelatedPdlInfo extends AbstractStructBase
{
    /**
     * The relatedPdl
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var \App\Integration\Providers\Alliance3\DTO\DirectoryElemStrInfo
     */
    public $relatedPdl;
    /**
     * Constructor method for RelatedPdlInfo
     * @uses RelatedPdlInfo::setRelatedPdl()
     * @param \App\Integration\Providers\Alliance3\DTO\DirectoryElemStrInfo $relatedPdl
     */
    public function __construct(\App\Integration\Providers\Alliance3\DTO\DirectoryElemStrInfo $relatedPdl = null)
    {
        $this
            ->setRelatedPdl($relatedPdl);
    }
    /**
     * Get relatedPdl value
     * @return \App\Integration\Providers\Alliance3\DTO\DirectoryElemStrInfo|null
     */
    public function getRelatedPdl()
    {
        return $this->relatedPdl;
    }
    /**
     * Set relatedPdl value
     * @param \App\Integration\Providers\Alliance3\DTO\DirectoryElemStrInfo $relatedPdl
     * @return \App\Integration\Providers\Alliance3\DTO\RelatedPdlInfo
     */
    public function setRelatedPdl(\App\Integration\Providers\Alliance3\DTO\DirectoryElemStrInfo $relatedPdl = null)
    {
        $this->relatedPdl = $relatedPdl;
        return $this;
    }
}
