Api\StructType\ApiOffer::getOffer PHP Method

getOffer() public method

Get offer value An additional test has been added (isset) before returning the property value as this property may have been unset before, due to the fact that this property is removable from the request (nillable=true+minOccurs=0)
public getOffer ( ) : ApiOffer | null
return ApiOffer | null
    public function getOffer()
    {
        return isset($this->offer) ? $this->offer : null;
    }