<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

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