<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

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