<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for deleteAttachment StructType
 * Meta informations extracted from the WSDL
 * - type: s0:deleteAttachment
 * @subpackage Structs
 */
class DeleteAttachment extends AbstractStructBase
{
    /**
     * The paramDeleteAttachment
     * @var ParamDeleteAttachment
     */
    public $paramDeleteAttachment;
    /**
     * Constructor method for deleteAttachment
     * @uses DeleteAttachment::setParamDeleteAttachment()
     * @param ParamDeleteAttachment $paramDeleteAttachment
     */
    public function __construct(ParamDeleteAttachment $paramDeleteAttachment = null)
    {
        $this
            ->setParamDeleteAttachment($paramDeleteAttachment);
    }
    /**
     * Get paramDeleteAttachment value
     * @return ParamDeleteAttachment|null
     */
    public function getParamDeleteAttachment()
    {
        return $this->paramDeleteAttachment;
    }
    /**
     * Set paramDeleteAttachment value
     * @param ParamDeleteAttachment $paramDeleteAttachment
     * @return DeleteAttachment
     */
    public function setParamDeleteAttachment(ParamDeleteAttachment $paramDeleteAttachment = null)
    {
        $this->paramDeleteAttachment = $paramDeleteAttachment;
        return $this;
    }
    /**
     * Method called when an object has been exported with var_export() functions
     * It allows to return an object instantiated with the values
     * @see AbstractStructBase::__set_state()
     * @uses AbstractStructBase::__set_state()
     * @param array $array the exported values
     * @return DeleteAttachment
     */
    public static function __set_state(array $array)
    {
        return parent::__set_state($array);
    }
    /**
     * Method returning the class name
     * @return string __CLASS__
     */
    public function __toString()
    {
        return __CLASS__;
    }
}
