<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for adePickup_GetIdentResponse Struct
 * Meta information extracted from the WSDL
 * - type: tns:adePickup_GetIdentResponse
 * @subpackage Structs
 */
class AdePickup_GetIdentResponse extends AbstractStructBase
{
    /**
     * The return
     * @var \GLS\CIdent
     */
    public $return;
    /**
     * Constructor method for adePickup_GetIdentResponse
     * @uses AdePickup_GetIdentResponse::setReturn()
     * @param \GLS\CIdent $return
     */
    public function __construct(\GLS\CIdent $return = null)
    {
        $this
            ->setReturn($return);
    }
    /**
     * Get return value
     * @return \GLS\CIdent|null
     */
    public function getReturn()
    {
        return $this->return;
    }
    /**
     * Set return value
     * @param \GLS\CIdent $return
     * @return \GLS\AdePickup_GetIdentResponse
     */
    public function setReturn(\GLS\CIdent $return = null)
    {
        $this->return = $return;
        return $this;
    }
}
