<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

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