<?php

namespace Geniki\GenikiStruct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for GetVoucherJobResponse GenikiStruct
 * @package Geniki
 * @subpackage Structs
 */
class GenikiGetVoucherJobResponse extends AbstractStructBase
{
    /**
     * The GetVoucherJobResult
     * Meta information extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var \Geniki\GenikiStruct\GenikiGetVoucherJobResult
     */
    public $GetVoucherJobResult;
    /**
     * Constructor method for GetVoucherJobResponse
     * @uses GenikiGetVoucherJobResponse::setGetVoucherJobResult()
     * @param \Geniki\GenikiStruct\GenikiGetVoucherJobResult $getVoucherJobResult
     */
    public function __construct(\Geniki\GenikiStruct\GenikiGetVoucherJobResult $getVoucherJobResult = null)
    {
        $this
            ->setGetVoucherJobResult($getVoucherJobResult);
    }
    /**
     * Get GetVoucherJobResult value
     * @return \Geniki\GenikiStruct\GenikiGetVoucherJobResult|null
     */
    public function getGetVoucherJobResult()
    {
        return $this->GetVoucherJobResult;
    }
    /**
     * Set GetVoucherJobResult value
     * @param \Geniki\GenikiStruct\GenikiGetVoucherJobResult $getVoucherJobResult
     * @return \Geniki\GenikiStruct\GenikiGetVoucherJobResponse
     */
    public function setGetVoucherJobResult(\Geniki\GenikiStruct\GenikiGetVoucherJobResult $getVoucherJobResult = null)
    {
        $this->GetVoucherJobResult = $getVoucherJobResult;
        return $this;
    }
}
