<?php

namespace GlsApi\Struct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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