<?php

namespace Geniki\GenikiStruct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for Create3rdPartyShipperResponse GenikiStruct
 * @package Geniki
 * @subpackage Structs
 */
class GenikiCreate3rdPartyShipperResponse extends AbstractStructBase
{
    /**
     * The Create3rdPartyShipperResult
     * Meta information extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var \Geniki\GenikiStruct\GenikiCreate3rdPartyShipperResult
     */
    public $Create3rdPartyShipperResult;
    /**
     * Constructor method for Create3rdPartyShipperResponse
     * @uses GenikiCreate3rdPartyShipperResponse::setCreate3rdPartyShipperResult()
     * @param \Geniki\GenikiStruct\GenikiCreate3rdPartyShipperResult $create3rdPartyShipperResult
     */
    public function __construct(\Geniki\GenikiStruct\GenikiCreate3rdPartyShipperResult $create3rdPartyShipperResult = null)
    {
        $this
            ->setCreate3rdPartyShipperResult($create3rdPartyShipperResult);
    }
    /**
     * Get Create3rdPartyShipperResult value
     * @return \Geniki\GenikiStruct\GenikiCreate3rdPartyShipperResult|null
     */
    public function getCreate3rdPartyShipperResult()
    {
        return $this->Create3rdPartyShipperResult;
    }
    /**
     * Set Create3rdPartyShipperResult value
     * @param \Geniki\GenikiStruct\GenikiCreate3rdPartyShipperResult $create3rdPartyShipperResult
     * @return \Geniki\GenikiStruct\GenikiCreate3rdPartyShipperResponse
     */
    public function setCreate3rdPartyShipperResult(\Geniki\GenikiStruct\GenikiCreate3rdPartyShipperResult $create3rdPartyShipperResult = null)
    {
        $this->Create3rdPartyShipperResult = $create3rdPartyShipperResult;
        return $this;
    }
}
