<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

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