<?php

namespace GreenwayDirectService;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for amendOffhireResponse StructType
 * @subpackage Structs
 */
class AmendOffhireResponse extends AbstractStructBase
{
    /**
     * The AmendOffhire
     * Meta informations extracted from the WSDL
     * - minOccurs: 0
     * @var \GreenwayDirectService\OffhireDetail
     */
    public $AmendOffhire;
    /**
     * Constructor method for amendOffhireResponse
     * @uses AmendOffhireResponse::setAmendOffhire()
     * @param \GreenwayDirectService\OffhireDetail $amendOffhire
     */
    public function __construct(\GreenwayDirectService\OffhireDetail $amendOffhire = null)
    {
        $this
            ->setAmendOffhire($amendOffhire);
    }
    /**
     * Get AmendOffhire value
     * @return \GreenwayDirectService\OffhireDetail|null
     */
    public function getAmendOffhire()
    {
        return $this->AmendOffhire;
    }
    /**
     * Set AmendOffhire value
     * @param \GreenwayDirectService\OffhireDetail $amendOffhire
     * @return \GreenwayDirectService\AmendOffhireResponse
     */
    public function setAmendOffhire(\GreenwayDirectService\OffhireDetail $amendOffhire = null)
    {
        $this->AmendOffhire = $amendOffhire;
        return $this;
    }
    /**
     * Method called when an object has been exported with var_export() functions
     * It allows to return an object instantiated with the values
     * @see AbstractStructBase::__set_state()
     * @uses AbstractStructBase::__set_state()
     * @param array $array the exported values
     * @return \GreenwayDirectService\AmendOffhireResponse
     */
    public static function __set_state(array $array)
    {
        return parent::__set_state($array);
    }
    /**
     * Method returning the class name
     * @return string __CLASS__
     */
    public function __toString()
    {
        return __CLASS__;
    }
}
