<?php

namespace App\Integration\Providers\Alliance3\DTO;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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