<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for sendSignedInvoiceResponse StructType
 * @subpackage Structs
 */
class SendSignedInvoiceResponse extends AbstractStructBase
{
    /**
     * The sendSignedInvoiceResult
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var int
     */
    public $sendSignedInvoiceResult;
    /**
     * Constructor method for sendSignedInvoiceResponse
     * @uses SendSignedInvoiceResponse::setSendSignedInvoiceResult()
     * @param int $sendSignedInvoiceResult
     */
    public function __construct($sendSignedInvoiceResult = null)
    {
        $this
            ->setSendSignedInvoiceResult($sendSignedInvoiceResult);
    }
    /**
     * Get sendSignedInvoiceResult value
     * @return int|null
     */
    public function getSendSignedInvoiceResult()
    {
        return $this->sendSignedInvoiceResult;
    }
    /**
     * Set sendSignedInvoiceResult value
     * @param int $sendSignedInvoiceResult
     * @return SendSignedInvoiceResponse
     */
    public function setSendSignedInvoiceResult($sendSignedInvoiceResult = null)
    {
        $this->sendSignedInvoiceResult = $sendSignedInvoiceResult;
        return $this;
    }
}
