<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

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