<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for OdczytReceptyDoKonsultacjiRequest StructType
 * Meta information extracted from the WSDL
 * - type: ns:OdczytReceptyDoKonsultacjiRequest
 * @subpackage Structs
 */
class OdczytReceptyDoKonsultacjiRequest extends AbstractStructBase
{
    /**
     * The numerRecepty
     * Meta information extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var NumerReceptyOIDMT
     */
    public $numerRecepty;
    /**
     * Constructor method for OdczytReceptyDoKonsultacjiRequest
     * @uses OdczytReceptyDoKonsultacjiRequest::setNumerRecepty()
     * @param NumerReceptyOIDMT $numerRecepty
     */
    public function __construct(NumerReceptyOIDMT $numerRecepty = null)
    {
        $this
            ->setNumerRecepty($numerRecepty);
    }
    /**
     * Get numerRecepty value
     * @return NumerReceptyOIDMT
     */
    public function getNumerRecepty()
    {
        return $this->numerRecepty;
    }
    /**
     * Set numerRecepty value
     * @param NumerReceptyOIDMT $numerRecepty
     * @return OdczytReceptyDoKonsultacjiRequest
     */
    public function setNumerRecepty(NumerReceptyOIDMT $numerRecepty = null)
    {
        $this->numerRecepty = $numerRecepty;
        return $this;
    }
}
