<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for sendEnvelopeResponse StructType
 * @subpackage Structs
 */
class SendEnvelopeResponse extends AbstractStructBase
{
    /**
     * The sendEnvelopeResult
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var bool
     */
    public $sendEnvelopeResult;
    /**
     * Constructor method for sendEnvelopeResponse
     * @uses SendEnvelopeResponse::setSendEnvelopeResult()
     * @param bool $sendEnvelopeResult
     */
    public function __construct($sendEnvelopeResult = null)
    {
        $this
            ->setSendEnvelopeResult($sendEnvelopeResult);
    }
    /**
     * Get sendEnvelopeResult value
     * @return bool|null
     */
    public function getSendEnvelopeResult()
    {
        return $this->sendEnvelopeResult;
    }
    /**
     * Set sendEnvelopeResult value
     * @param bool $sendEnvelopeResult
     * @return SendEnvelopeResponse
     */
    public function setSendEnvelopeResult($sendEnvelopeResult = null)
    {
        $this->sendEnvelopeResult = $sendEnvelopeResult;
        return $this;
    }
}
