<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for KryteriaOdczytuReceptyDoKonsultacjiMT StructType
 * Meta information extracted from the WSDL
 * - documentation: Kryteria odczytu recepty do konsultacji.
 * @subpackage Structs
 */
class KryteriaOdczytuReceptyDoKonsultacjiMT extends AbstractStructBase
{
    /**
     * The numerRecepty
     * Meta information extracted from the WSDL
     * - documentation: Numer recepty.
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var NumerReceptyOIDMT
     */
    public $numerRecepty;
    /**
     * Constructor method for KryteriaOdczytuReceptyDoKonsultacjiMT
     * @uses KryteriaOdczytuReceptyDoKonsultacjiMT::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 KryteriaOdczytuReceptyDoKonsultacjiMT
     */
    public function setNumerRecepty(NumerReceptyOIDMT $numerRecepty = null)
    {
        $this->numerRecepty = $numerRecepty;
        return $this;
    }
}
