<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for OdczytReceptyRequest StructType
 * Meta information extracted from the WSDL
 * - type: ns:OdczytReceptyRequest
 * @subpackage Structs
 */
class OdczytReceptyRequest extends AbstractStructBase
{
    /**
     * The kluczRecepty
     * Meta information extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var KluczReceptyMT
     */
    public $kluczRecepty;
    /**
     * Constructor method for OdczytReceptyRequest
     * @uses OdczytReceptyRequest::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 OdczytReceptyRequest
     */
    public function setKluczRecepty(KluczReceptyMT $kluczRecepty = null)
    {
        $this->kluczRecepty = $kluczRecepty;
        return $this;
    }
}
