<?php

namespace Geniki\GenikiStruct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for Get3rdPartyShipperResponse GenikiStruct
 * @package Geniki
 * @subpackage Structs
 */
class GenikiGet3rdPartyShipperResponse extends AbstractStructBase
{
    /**
     * The Get3rdPartyShipperResult
     * Meta information extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var \Geniki\GenikiStruct\GenikiGet3rdPartyShipperResult
     */
    public $Get3rdPartyShipperResult;
    /**
     * Constructor method for Get3rdPartyShipperResponse
     * @uses GenikiGet3rdPartyShipperResponse::setGet3rdPartyShipperResult()
     * @param \Geniki\GenikiStruct\GenikiGet3rdPartyShipperResult $get3rdPartyShipperResult
     */
    public function __construct(\Geniki\GenikiStruct\GenikiGet3rdPartyShipperResult $get3rdPartyShipperResult = null)
    {
        $this
            ->setGet3rdPartyShipperResult($get3rdPartyShipperResult);
    }
    /**
     * Get Get3rdPartyShipperResult value
     * @return \Geniki\GenikiStruct\GenikiGet3rdPartyShipperResult|null
     */
    public function getGet3rdPartyShipperResult()
    {
        return $this->Get3rdPartyShipperResult;
    }
    /**
     * Set Get3rdPartyShipperResult value
     * @param \Geniki\GenikiStruct\GenikiGet3rdPartyShipperResult $get3rdPartyShipperResult
     * @return \Geniki\GenikiStruct\GenikiGet3rdPartyShipperResponse
     */
    public function setGet3rdPartyShipperResult(\Geniki\GenikiStruct\GenikiGet3rdPartyShipperResult $get3rdPartyShipperResult = null)
    {
        $this->Get3rdPartyShipperResult = $get3rdPartyShipperResult;
        return $this;
    }
}
